I like south a lot and it's cute and all but I again got everything messed up somehow. I've looked at all the questions and answers on this and I have only progressed so far as from "table already exists" to "no such table" errors.

Is there a way to reset everything and start over with clean db and south to save some nerve and hair? :)

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Drop the database and run:

python manage.py syncdb --migrate

South has its own tables that are added during syncdb.

link|improve this answer
This has worked, thanks a lot. I had to rm migrations/ though for that to work. How do I get back to south now? :) – abolotnov Dec 29 '11 at 16:37
Probably shouldn't have done that. If there was a problem migrating, you should have fixed the migration, not deleted the whole folder. You might be able to get by with just the initial migration (run python manage.py schemamigration --initial [app], but if you had any datamigrations, you'll have to rewrite those now. – Chris Pratt Dec 29 '11 at 16:51
feedback

You could just drop the database and then run python manage.py migrate

link|improve this answer
...no such table south_migrationhistory – abolotnov Dec 28 '11 at 21:22
feedback

Your Answer

 
or
required, but never shown

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