我在应用程序中有两个已更改的模型,但我想只为一个模型创建一个迁移而忽略另一个模型,这是否可以使用
的变体./manage.py schemamigration app --auto
命令?
答案 0 :(得分:2)
创建迁移的方法有很多种。但我只会定义两种方式。
//migrate the changes of all models of the app
./manage.py schemamigration app --auto
//migrate only the changes of the given model or 1 model
python manage.py schemamigration app_name extend_modelname --auto