Trying to follow the tutorial at Django project.
The problem I\'ve come across is that when performing the command:
python manage.py sql polls
I\'m given th
With django 1.7, instead of deleting app-name/migrations folder, In your MIGRATION_MODULES entry of your site, you can rename the application dictionary value with an non-existing module name by adding some dummy string:
MIGRATION_MODULES['my_app'] += '_xx'
And then manage.py sqlclear my_app works fine.