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 develo
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. :)