|
Project Information
Members
Links
|
Django EvolutionWhen you run ./manage.py syncdb, Django will look for any new models that have been defined, and add a database table to represent those new models. However, if you make a change to an existing model, ./manage.py syncdb will not make any changes to the database. This is where Django Evolution fits in. Django Evolution is an extension to Django that allows you to track changes in your models over time, and to update the database to reflect those changes. Django Evolution is a work in progress. The interface and usage of Django Evolution is subject to change as we finess the details. If you'd like to help out, check out the source and let us know what you think. If you have any questions that aren't covered by the FAQ and/or documentation, there is a mailing list where you may be able to get answers. Using Django EvolutionDjango Evolution requires features that are only available in Django v1.0 or higher. It has been tested with Django 1.2 as well. Django Evolution doesn't support all of Django's database features. In particular, it doesn't support the new multi-database feature or custom proxy models. InstallationTo install Django Evolution, simply run: $ easy_install -U django_evolution You can also check out Django Evolution from the SVN repository. Using Django Evolution in your project
For a detailed description of the capabilities of Django Evolution, please read the FAQ, and/or the tutorial and documentation |