Answers for "undo initial migration django"

3

how to undo makemigrations django

# The migration you want to undo is 0011_last_migration
# The migration right before it is 0010_previous_migration 
python manage.py migrate my_app 0010_previous_migration 

# Then you could delete the migration that you don't need (0011_last_migration) in the migration folder 

# list all migration names like this
python manage.py showmigrations my_app
Posted by: Guest on July-01-2020
1

django migrate fake zero

$ python manage.py migrate --fake YourApp zero
# This will Reverse all migerations in YourApp
Posted by: Guest on June-24-2020
1

revert a migration django

python manage.py migrate <your-app> <migration number>
# eg
python manage.py migrate my_app 0001
Posted by: Guest on September-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language