How to reset Django migrations
13 Jan 2018Remove the all migrations files within your project:
Go through each of your projects apps migration folder and remove everything inside, except the init.py file.
Or if you are using a unix-like OS you can run the following script (inside your project dir):
Drop the current database, or delete the db.sqlite3 if it is your case.
Create the initial migrations and generate the database schema:
And you are good to go.