how to undo all migrations for an app in 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: revert a migration django
python manage.py migrate <your-app> <migration number>
# eg
python manage.py migrate my_app 0001