[Fixed]-Django 1.8, How to completely reset migrations?

1👍

If you want migration from scratch.First recreate database.Then

find . -path *migrations* -name "*.py" -not -path "*__init__*" -exec rm {} \; # make sure to be in your projects path
python manage.py makemigrations
python manage.py migrate

Leave a comment