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.
我是mysql的新手。我正在研究 ruby on rails 项目。我正在使用 mysql 数据库,它以 utc 格式存储时间。但我想要印度的当地时间。
将时间保存在 UTC 中的数据库中。您可以随时将时间转换为当地时间。
更多地查看 Rails 时区,有很多关于它的信息并且它得到了很好的支持。
本质上,您将根据 around_filter 中的用户或环境设置设置 Time.zone 值,Rails 将负责在正确的时区显示日期。
还有很多其他细节,但这应该可以帮助您入门。