I already started a project, and the models are all synced and everything.

link|improve this question

how did you implement this? I'm using mysql and getting problems when I try to $ python manage.py migrate – locoboy Apr 29 at 14:30
feedback

3 Answers

up vote 4 down vote accepted

Yes. I think it is not too late. I've moved to south in a middle of a project and I am happy with that choice. I think it is a big help for deployment.

The initialization of the south app can be done at any moment.

link|improve this answer
feedback

It's quite straight forward to start using South.

Just follow the installation instructions (don't forget to run syncdb at the end).

Then you can convert the app to south:

./manage.py convert_to_south myapp

Then you can make modifications to your model and do schemamigrations or even do datamigrations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.