📜  如何撤消 makemigrations django - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:35.185000             🧑  作者: Mango

代码示例1
# 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