django clear migrations code example

Example 1: delete all migrations django

find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc"  -delete

Example 2: how to delete migrations in django

python3 manage.py rm -r name/migrations

Example 3: django migrate fake zero

$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp

Example 4: windows 10 reset django migrations

find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc"  -delete