如何让Django South迁移更改了max_length的字段?

时间:2013-04-25 12:09:02

标签: python django django-south

我在模型中有CharField,我想要增加max_length属性。南方没有注意到这种变化,说没有什么可以迁移的。如何让它迁移?

1 个答案:

答案 0 :(得分:5)

发出命令(在代码中更改max_length之后):

python manage.py schemamigration <name of the app> --auto
python manage.py migrate <name of the app>

这对我有用。 希望它有所帮助