我运行以下命令将我的本地数据库的内容推送到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,这是原因:
原文链接:https://www.f2er.com/postgresql/193359.htmlThe 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).