Using Django 1.7 migrations.
I accidentally dropped a table in my database. I assumed that by running migration again this would recreate the table but no, Django st
The simplest way to do this on django >= 1.9 is to run the following:
./manage.py migrate app_name zero
That will remove your tables and revert all migrations.