使用 --auto 更改 django+south 迁移表的编码
Django新手在这里
我知道我可以通过编写自己的南迁移来更改表的编码。
我的问题是,有没有办法通过更改我的模型并使用来做到这一点
./manage.py schemamigration my_app --auto
?
Django newbie here
I know that I can change the encoding of a table by writing my own south migration.
My question is, is there a way doing it by changing my model and using
./manage.py schemamigration my_app --auto
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK,不存在字符集修改迁移之类的事情,因为字符集取决于部署,因此是设置选项。
因此,您必须手动创建迁移(因此可能没有
--auto
并使用原始 SQL)。AFAIK, there is no such thing as charset modification migration, as charset depends on deployment and thus is settings option.
Thus, You must crate the migration manually (so probably without
--auto
and using raw SQL).