South:对唯一且不为空的列运行迁移
使用 South/Django,我遇到了一个问题,我试图为数据库中现有行的模型添加 UNIQUE
和 NOT NULL
列。 South 提示我指定该列的默认值,因为它是 NOT NULL
。但由于它也有一个 UNIQUE
约束,我无法向 models.py 中的字段添加默认值,也无法指定一次性值,因为它在所有行。
我能想到的解决此问题的唯一方法是首先创建一个可为空的列,应用迁移,运行脚本以使用该列中的唯一值填充现有行,然后添加另一个迁移以添加 UNIQUE 对该列的约束。
但有没有更好的方法来完成同样的事情呢?
Using South/Django, I am running into a problem where I'm trying to add a UNIQUE
and NOT NULL
column for a model with existing rows in the database. South prompts me to specify a default for the column, since it is NOT NULL
. But since it also has a UNIQUE
constraint, I can't add a default to the field in models.py, nor can I specify a one-off value because it'll be the same on all the rows.
The only way I can think of to get around this is to create a nullable column first, apply the migration, run a script to populate the existing rows with unique values in that column, and then add another migration to add the UNIQUE
constraint to that column.
But is there a better way of accomplishing the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这就是您应该采取的方法。您应该进行 schemamigration ->数据迁移->为此进行架构迁移。不幸的是,如果在 SQL 中没有办法做到这一点,south 也不能做到。
Yes, this is the approach you should take. You should be doing schemamigration -> datamigration -> schemamigration for this. unfortunately if there is no way to do it in SQL, south cannot do it either.