remove all migration files django code example
Example 1: remove all pycache files
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
Example 2: delete all migrations django
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
Example 3: django migrate fake zero
$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp