我希望我的订单模型的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"
原文链接:https://www.f2er.com/ruby/266153.html