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!