Adding South to an existing Django project. I have it installed on both the development machine and the "production" server.

I've done the following on the development machine, then: added South app to settings.py,

python manage.py syncdb
python manage.py convert_to_south myproject.myapp

then changed some models, then

python manage.py schemamigration myproject.myapp --auto
python manage.py migrate myproject.myapp

Seems to work so far. What I am now not so sure about is what to do on the production server. Just repeat all these steps manually? Upload modified settings.py, do syncdb, convert_to_south, upload modified models.py, do schemamigration, migrate? Something different? The tutorial here says something about adding migrations to the version control, so, presumably, they should be uploaded and somehow applied on the production server?

Furthermore, right now I am using sqlite3 on the development machine and mysql on the server - does it make things any different south-wise?

link|improve this question

50% accept rate
1  
The bounty of South putting migrations in code that uses the ORM is that it makes them back-end agnostic, so your migrations will work on sqlite, mysql and all databases that have a back-end. – Chris Wesseling Feb 15 at 8:54
feedback

3 Answers

To make sure the south migration table exists,

python manage.py syncdb

and then

python manage.py migrate myproject.myapp --fake 0001
python manage.py migrate myproject.myapp

That's what's worked for me. :)

link|improve this answer
feedback

My guide says:

  1. Install South on server. import south from shell just to make sure you are using the same python env.
  2. Add 'south' to INSTALLED_APPS in settings.py.
  3. Upload settings.py.
  4. Restart server
  5. python manage.py syncdb.
  6. Upload new app/models.py and app/migrations/ dir.
  7. Restart server.
  8. python manage.py migrate app --fake 0001
  9. python manage.py migrate app
link|improve this answer
I think this answers the question better than @AKX. One can make out from the question that is still a bit in the dark about deploying his code to the server. +1 (Once you get enough reputation to edit, you should consider improving original answers, that were close, over composing a new one.) – Chris Wesseling Feb 15 at 8:49
feedback

note: this should be a comment to the question, but i don't have the points to make a comment...

I'm still figuring out my dev to production process, but one source that helped a lot was this blog post: http://www.djangopro.com/2011/01/django-database-migration-tool-south-explained/

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.