I'm new to South so I am wondering if I ever need to call

./manage.py syncdb

or doing

./manage.py schemamigration appname --auto
./manage.py migrate appname

is sufficient in all cases South can handle on its own.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

South isn't project wide. It is app wide.
Some apps use south, some apps don't use it.

if an app is integrated south, to do db changes you will use

./manage.py schemamigration appname --auto
./manage.py migrate appname

but not all apps are integrated with south.

When you add a new app that don't use south to your project, you need to call ./manage.py syncdb for these apps. (For example, django.contrib apps)

In short, use ./manage.py syncdb when an app doesn't use south, and ./manage.py migrate for south integrated apps.

link|improve this answer
Thank you for a clear explanation. I edited your answer to add some formatting. – Dan Abramov Jun 14 '11 at 1:08
I found South behavior confusing until I realized that South changes syncdb behavior. One installed, syncdb is a no-op on apps managed by South. So you can run syncdb on a site even if it has some apps managed by south. You have to be careful when you first install south that the syncdb and initial migrations are consistent, but once you've done that, it's nicely error-tolerant. – Chocohound Mar 20 at 17:07
feedback

Your Answer

 
or
required, but never shown

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