gpt4 book ai didi

ruby-on-rails - ID 列的 Rails 迁移从 1,000 开始并从那里自动递增?

转载 作者:行者123 更新时间:2023-12-04 00:36:08 25 4
gpt4 key购买 nike

我希望我的订单模型的 ID 从 1000 开始,并从那里自动递增。

这可以通过迁移来完成吗?

最佳答案

在您的迁移中,在创建表后,使用以下内容更新序列:

create_table :products do |t|
t.string :name
# other stuff
end

# for Postgres
execute "SELECT setval('products_id_seq', 1000)"

# and for mysql ...
execute "ALTER TABLE products AUTO_INCREMENT = 1000"

关于ruby-on-rails - ID 列的 Rails 迁移从 1,000 开始并从那里自动递增?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12076741/

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