gpt4 book ai didi

ruby-on-rails - Rails 迁移 : primary key id with unsigned int(10)

转载 作者:行者123 更新时间:2023-12-04 07:40:07 26 4
gpt4 key购买 nike

我想通过 Rails 迁移在我的表中定义如下主键 ID
id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT
我正在使用 mysql 数据库。

最佳答案

如果您希望避免在迁移中使用自定义 SQL,这也适用:

create_table(:user, id: false,  primary_key: :id) do |t|
t.primary_key :id, :unsigned_integer, null: false, default: :null, auto_increment: true
t.string :name
end

关于ruby-on-rails - Rails 迁移 : primary key id with unsigned int(10),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6674468/

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