Django Migration is not applying the migration changes

后端 未结 8 706
悲哀的现实
悲哀的现实 2021-02-02 15:41

Using django 1.7.7 I want to use django\'s migration to add or remove a field. so I modified model.py and ran

python manage.py makemigrations myproj
Migrations f         


        
8条回答
  •  旧时难觅i
    2021-02-02 16:03

    In addition to the other answers, make sure that in models.py, you have managed = True in each table's meta

提交回复
热议问题