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
Source:stackexchange.com