如何让Django South迁移更改了max_length的字段?
作者:互联网
我在模型中有一个CharField,我想要增加max_length属性.南方没有注意到这种变化,说没有什么可以迁移的.如何让它迁移呢?
解决方法:
发出命令(在代码中更改max_length之后):
python manage.py schemamigration <name of the app> --auto
python manage.py migrate <name of the app>
这对我有用.
希望能帮助到你
标签:python,django,django-south 来源: https://codeday.me/bug/20190901/1779792.html