I've run into the same issue presented by the commenter here: Django South - table already exists

There was no follow-up, so I thought I'd post a new question. I have a Django app whose migrations I manage with South. I added a field to my model then ran

./manage schemamigration my_app --auto

which ran as expected. Running

./manage migrate my_app

however, resulted in an error indicating that the table associated with the model I changed already exists. This led me to the above linked question, so running

./manage migrate my_app --fake

resolved the table error, but now I'm getting a Django error that the column associated with the new field does not exist.

./manage sqlall my_app

shows the schema to be as expected.

Any thoughts on how to remedy this are appreciated!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 7 down vote accepted

Well you have screwed up your migrations.

When I screw them up I find that it is easiest to start over. I delete all migrations/* files. I remove the changes in models.py which I want to migrate at the moment (by the help of version control tools, or just comment out your new fields). Then initialize migration from scratch:

manage.py migrate my_app --delete-ghost-migrations
manage.py schemamigration my_app --init
manage.py migrate my_app --fake

Then restore my changes to models.py and begin new clean migration:

manage.py schemamigration my_app --auto
manage.py migrate my_app

Now when everything is clean it works.

link|improve this answer
Make also sure to delete all database entries about schema migrations south has made before as well (if you screwed up). @drew: your main mistake was that you should have made the initali migration and run ./manage migrate my_app --fake BEFORE adding the new field to the model! – lazerscience Nov 7 '10 at 18:59
1  
@lazerscience manage.py migrate my_app --delete-ghost-migrations does the thing. – Skirmantas Nov 7 '10 at 19:01
Oh sorry. I overlooked that somehow... – lazerscience Nov 7 '10 at 19:20
feedback

Your Answer

 
or
required, but never shown

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