postgresql – 将数据推送到Heroku时出错:时区位移超出范围

前端之家收集整理的这篇文章主要介绍了postgresql – 将数据推送到Heroku时出错:时区位移超出范围前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我运行以下命令将我的本地数据库内容推送到Heroku:
heroku db:push --app my-app

从我的家庭电脑这工作完美无瑕,但从我的工作电脑我得到这个错误

Taps Server Error: PGError: ERROR: time zone displacement out of range: “2011-11-15 12:00:00.000000+5894114400”

我不知道这个日期是从哪里来的,我不能在数据中找到它。任何想法发生了什么和/或如何解决它?

使用Ruby 1.9.2-p290而不是1.9.3-p0固定它。 According to Roger Braun,这是原因:

The problem is (I think),that marshalling changed between Ruby 1.9.2 and 1.9.3,so this is not really a taps error. Just use whatever version heroku runs to push and pull databases (Probably 1.9.2).

原文链接:https://www.f2er.com/postgresql/193359.html

猜你在找的Postgre SQL相关文章