Heroku rake db:迁移失败并出现以下错误
因此,在将我的应用程序推送到heroku后,我尝试将数据库迁移到heroku。但是,我收到以下错误。
C:\Users\Administrator\Ruby\Myapp>heroku rake db:migrate
rake aborted!
undefined method `task' for #<MyApp::Application:0x7fc922c28dd0>
在本地,一切正常,包括迁移。
另外,大约几天前迁移工作正常,因此错误似乎是在 Heroku 中的 rake 版本从 0.8.7 更改为 0.9.0 之后出现的。
我该如何解决这个问题?
So after pushing my app to heroku, I tried to migrate database to heroku. However, I get the following error.
C:\Users\Administrator\Ruby\Myapp>heroku rake db:migrate
rake aborted!
undefined method `task' for #<MyApp::Application:0x7fc922c28dd0>
In local, everything works just fine including migration.
Also, migration worked just fine about few days ago, therefore it seems the error is after the rake version which changed from 0.8.7 to 0.9.0 in Heroku.
How can I resolve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
昨天遇到这个问题并发布在这里: Rake 0.9.0 '未定义方法'任务' '
已经指定了几种解决方案。
had this problem yesterday and posted here: Rake 0.9.0 'undefined method 'task' '
Several solutions have been specified.
尝试添加
到您的 Gemfile,以控制 Heroku 在您的应用程序上使用的 Rake 版本。
Try adding
to your Gemfile, to control the version of Rake that Heroku uses on your app.