在我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格式存储的。
在上面的评论中,他们说
...并使Active Record自动转换为该区域...
我该怎么办?在哪里?
另外,我也会在heroku上部署它,我希望设置可以继续使用