Heroku rake db:迁移失败并出现以下错误

发布于 2024-11-08 17:53:48 字数 345 浏览 4 评论 0原文

因此,在将我的应用程序推送到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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

故事与诗 2024-11-15 17:53:48

昨天遇到这个问题并发布在这里: Rake 0.9.0 '未定义方法'任务' '
已经指定了几种解决方案。

had this problem yesterday and posted here: Rake 0.9.0 'undefined method 'task' '
Several solutions have been specified.

挽清梦 2024-11-15 17:53:48

尝试添加

gem 'rake', '0.8.7'

到您的 Gemfile,以控制 Heroku 在您的应用程序上使用的 Rake 版本。

Try adding

gem 'rake', '0.8.7'

to your Gemfile, to control the version of Rake that Heroku uses on your app.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文