what doing after removing mirations folder code example
Example 1: delete all migrations django
find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
Example 2: django migrate fake zero
$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp