manage.py migrate appname zero drop single table code example
Example 1: how to create migrations in django
//to create migration files
python manage.py makemigrations
//to migrate migration files
python manage.py migrate
Example 2: windows 10 reset django migrations
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete