I\'m using Django ( < v1.7), with SQLite3 as the database engine.
I am trying to add a new field to an already existing model\'s class. This class already has dat
There are other options of migration apps (although South is the most used).
I have used django-evolution for my projects and it was very easy to install and start using.
South seems to be more complete, but for simpler tasks, django-evolution may be suitable.