Reputation: 2239
This seems to be outdated as the reset
command does not seem to be found using the version of South I am using, which is the most recent I believe.
Anyways, say you are in production and things get really messy. What is the best current way to start fresh with a Django app as far as cleaning up the migration history?
Upvotes: 8
Views: 6284
Reputation: 29804
Steps:
/migrations
folder inside your appsDone
Notice that you may drop the table or delete all its rows.
If you drop it you'll have to syncdb
again.
Hope this helps!
Upvotes: 13