I have an app named 'robots' and used 0.9 version of it
I later find out 0.9 has a feature I don't want and downgraded to 0.8
After sometime, I try to do south migrate on my project and meet an error
south.exceptions.NoMigrations: Application '<module 'robots' from '/home/ubuntu/virtualenvs/codingqna/local/lib/python2.7/site-packages/robots/__init__.pyc'>' has no migrations.
I guess 0.9 had migrations file but 0.8 doesn't, and south is complaining about it.
How do I remove this from south's history like it never existed? (like I used 0.8 from the beginning without the migrations files)
Or any other way I can use here?