最佳答案
在我的 application.rb
中,我看到了下面的评论
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
config.time_zone = 'Eastern Time (US & Canada)'
正如你从上面看到的,我已经使 config.time_zone
到 EST 时间。但是,当在数据库中创建记录时,看起来 datetime
仍然是以 UTC 格式存储的。
在上面的评论中,他们说
... 并使活动记录自动转换到这个区域..。
我要怎么做,在哪里?
还有,我也会在 Heroku 上部署这个,我希望设置能够继续