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 provides support for updating database table structure based on model changes.
The following is a list of the model changes is working:
- Adding new simple fields (e.g., a new CharField).
- Adding new ManyToMany Fields.
- Deletion of fields.
- Deletion of models.
- Deletion of entire applications.
- Renaming of a field.