How to reset django database code example
Example 1: django reset database
python manage.py flush
Example 2: django migrate fake zero
$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp
python manage.py flush
$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp