gpt4 book ai didi

ruby-on-rails - Rails4 迁移-添加 null : false to an add_reference method?

转载 作者:数据小太阳 更新时间:2023-10-29 07:15:06 24 4
gpt4 key购买 nike

我刚开始学习 Rails,如果这个问题的答案很明显,我很抱歉。

我已经在我的应用程序中添加了对帖子和类别表的迁移,现在我使用以下行在我的帖子表中添加对默认值非空的类别的引用:

add_reference :posts, :category, index: true, foreign_key: true, null: false

但是我在运行迁移时遇到以下错误:

SQLite3::SQLException: Cannot add a NOT NULL column with default value NULL: ALTER TABLE "posts" ADD "category_id" integer NOT NULL

我已经尝试通读 API,但无法弄清楚我做错了什么。

最佳答案

也许 sqlite3 不允许这样做,尝试

add_reference :posts, :category, index: true, foreign_key: true, null: false
change_column :posts, :category_id, :integer, null: false

关于ruby-on-rails - Rails4 迁移-添加 null : false to an add_reference method?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32305821/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com