Rails - Change_column 迁移是否会影响现有约束

发布于 2024-12-10 23:18:29 字数 192 浏览 1 评论 0原文

如果我有一个字段并且它已经进行了迁移以设置 :null =>; false 然后我进行另一次迁移以添加 :unique =>; true - 我现在需要列出现有的 :null => false 也在新迁移中吗?
如果我没有在新迁移中列出它是否意味着它实际上被删除了?

If I have a field and it already has had a migration to set :null => false and I then do another migration to add :unique => true - do I now need to list the existing :null => false also in the new migration?
If I do not list it in the new migration does that imply it actually gets removed?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

心碎的声音 2024-12-17 23:18:29

所有迁移更改都与当前数据库状态相关,您无需从一开始就列出所有现有更改。

确定的好方法就是简单地进行测试。格

all migration changes are relative to current database state, you don't need to list all existing changes from the beginning.

Good way to became sure is simply perform a test. gl

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