South - How to force certain migration? South - How to force certain migration? python python

South - How to force certain migration?


It seems like you've faked migration 0006 forward, you should fake it backward too:

manage.py migrate --fake yourapp 0005

This will set the current migration to 0005.

Apparently, you want to migrate back to 0002:

manage.py migrate --fake yourapp 0002

And then start over at 0003:

manage.py migrate yourapp