Django South - table already exists
问题 I am trying to get started with South. I had an existing database and I added South ( syncdb , schemamigration --initial ). Then, I updated models.py to add a field and ran ./manage.py schemamigration myapp --auto . It seemed to find the field and said I could apply this with ./manage.py migrate myapp . But, doing that gave the error: django.db.utils.DatabaseError: table "myapp_tablename" already exists tablename is the first table listed in models.py . I am running Django 1.2, South 0.7 回答1: