ruby-on-rails – heroku运行rake db:migrate … rake aborted!找不到Rakefile

当我运行heroku运行rake db:migrate时,我收到以下错误:

$heroku run rake db:migrate
Running `rake db:migrate` attached to terminal... up, run.8507
rake aborted!
No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb)
/usr/local/lib/ruby/1.9.1/rake.rb:2367:in `raw_load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:2007:in `block in load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:2058:in `standard_exception_handling'
/usr/local/lib/ruby/1.9.1/rake.rb:2006:in `load_rakefile'
/usr/local/lib/ruby/1.9.1/rake.rb:1991:in `run'
/usr/local/bin/rake:31:in `<main>'

其他用户发布了相同的错误,但在他们的情况下,他们实际上没有Rakefile,一旦他们创建了一个Rakefile,它们就可以使用它们,或者它们位于错误的目录中.我的应用程序确实有一个Rakefile,在正确的目录中,并包含所有正确的文本,我在我的应用程序的根目录中.

这就是我的Rakefile的样子:

    # Add your own tasks in files placed in lib/tasks ending in .rake,
    # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

    require File.expand_path('../config/application', __FILE__)

    Rails.application.load_tasks

这就是“heroku run cat Rakefile”所做的:

    $heroku run cat Rakefile
    Running `cat Rakefile` attached to terminal... up, run.9132
    cat: Rakefile: No such file or directory

最佳答案 每当你和Heroku挣扎时,你应该检查你的日志:

heroku logs

扫描您可以谷歌的任何错误和/或获得有关出错的提示.

如果您使用的是git,可以使用以下方法快速搜索错误:

git grep "whatever you want to search for"

然后,您将知道在何处找到该文件,以便您可以尝试验证rakefile实际存在于:

git grep rakefile

有时,只需重新启动并重置数据库并重新加载当前架构更容易:

rake db:reset db:migrate all

这将破坏您的数据库,然后创建它,然后迁移您当前的模式:

rake db:drop db:create db:migrate 

如果要重置heroku数据库

要删除数据库,如果您使用的是SHARED_DATABASE_URL:

heroku pg:reset DATABASE

要重新创建没有任何内容的数据库:

heroku run rake db:migrate

使用种子数据填充数据库:

heroku run rake db:seed
点赞