delete all saved migrations django 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