South:对唯一且不为空的列运行迁移

发布于 2024-12-02 03:24:40 字数 334 浏览 1 评论 0原文

使用 South/Django,我遇到了一个问题,我试图为数据库中现有行的模型添加 UNIQUENOT 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉服软 2024-12-09 03:24:40

是的,这就是您应该采取的方法。您应该进行 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文