导轨->用“updated_at”做一些事情就像“set_primary_key”一样对于 ID
有一个带有字段“LastModifiedDate”的旧表,我想使用该列作为我的“updated_at”列。
有没有办法告诉 Rails 使用该字段?
或者,让我重新表述一下。 :) ...如何告诉 Rails 使用该字段? :)
谢谢!
have a legacy table with a field "LastModifiedDate", and I want to use that column as my "updated_at" column.
Is there any way to tell Rails to use that field?
Or, let me rephrase. :) ... How can I tell Rails to use that field? :)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您好,您可以使用
after_update
更改该列的值Hi You may use
after_update
to change value of that column