ActiveModel 时间戳字段:时间戳从何而来?
在 Rail 模型中,当添加/更新记录时,时间戳是按 Rails 服务器或数据库服务器上的时钟给出的吗?
In a Rail model, when a record gets added/updated, is the timestamp given per the clock on the rails server or the database server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
快速确认 Rails 源 显示它是 Rails 服务器时间,由 Ruby 的 Time.now 方法返回:
A quick Ack of the Rails source reveals it to be the Rails server time, as returned by Ruby's
Time.now
method: