text 使用django 1.7中的迁移重命名字段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 使用django 1.7中的迁移重命名字段相关的知识,希望对你有一定的参考价值。

To change a field name in django 1.7+

1.  Edit the field name in the model (but remember the old field name: you need it for step 3!)
2.  Create an empty migration
$ python manage.py makemigrations --empty myApp
3.  Edit the empty migration (it's in the migrations folder in your app folder, and will be the most recent migration) by adding

migrations.RenameField('MyModel', 'old_field_name', 'new_field_name'),

to the operations list.

4.  Apply the migration  
$ python manage.py migrate myApp

以上是关于text 使用django 1.7中的迁移重命名字段的主要内容,如果未能解决你的问题,请参考以下文章