ruby-on-rails – Rails迁移不能在heroku上运行,Model类报告为未初始化的常量

我正在尝试在heroku上运行迁移,我似乎无法找到为什么我的模型类无法识别的问题.

这是我的迁移:

class AddTestToGoals < ActiveRecord::Migration
  def change
    add_column :goals,:test,:integer,default: 0,null: false
    Goal.reset_column_information
    Goal.all.each { |g| g.update_attribute :test,Goal::PASS }
  end
end

使用它运行它

heroku run rake db:migrate

我收到这个错误

uninitialized constant AddTestToGoals::Goal

谁知道问题是什么?

编辑:错过键入之前,它是无法识别的模型,而不是其中的常量.

半个办公室:

使用这个(我在这里找到:http://visibletrap.blogspot.co.il/2011/10/heroku-access-railss-model-in-migration.html)

class AddTestToGoals < ActiveRecord::Migration
  class Goal < ActiveRecord::Base; end
  def change
     add_column :goals,null: false
     Goal.reset_column_information
     Goal.all.each { |g| g.update_attribute :test,Goal::PASS }
  end
end

heroku不抱怨不知道什么目标解决了问题的一半.
但是,目标:: PASS无法识别.

解决方法

老问题,但我最近经历过类似的事情,这是由于通过设置禁用自动加载

config.threadsafe!

在我的环境/ staging.rb文件中.
可以通过更换以下内容来修复它

config.threadsafe! unless $rails_rake_task

这应该没问题,因为rake任务不需要线程安全.

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...