Skip to content
Dave Hall edited this page Apr 27, 2011 · 5 revisions

This page describes the schema migrations that have taken place over the lifetime of django-reversion, along with a how-to guide for updating your schema using South.

django-reversion 1.4

This version added a much-requested 'type' field to Version models, allows statistic to be gathered about the number of additions, changes and deletions that have been applied to a model.

In order to apply this migration, it is first necessary to install South.

  1. Add 'south' to your INSTALLED_APPS setting.
  2. Run ./manage.py syncdb

You then need to run the following two commands to complete the migration:

./manage.py migrate reversion 0001 --fake
./manage.py migrate reversion

django-reversion 1.3.3

No migration needed.

Clone this wiki locally