Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 sql server 的 ruby orm 续集。我想知道如何在迁移中将 datetime 字段的默认值设置为 sql server 函数 getdate():
create_table(:table) do primary_key :id datetime :last_update, null: false, default: ??? end
谢谢你的帮助 :-)
您可能想要default: Sequel.function(:getdate),假设您正在使用当前版本的 Sequel。
default: Sequel.function(:getdate)