ExceptionNotifier和rake:db:migrate

时间:2013-07-30 04:47:59

标签: ruby-on-rails ruby-on-rails-3 rails-migrations exception-notification

应用和迁移在本地工作正常,但rake db:migrate在服务器上失败并出现此错误:

undefined method `new' for ExceptionNotifier:Module

我尝试运行的唯一迁移在本地传递,看起来像这样:

def change
  change_table :users do |t|
    t.remove :admin
  end
  change_column :users, :state, :string, :default => "client"
end

不知道是什么导致了它。是的,我正在使用exception notification宝石。有什么想法吗?谢谢!

1 个答案:

答案 0 :(得分:2)

似乎是异常通知程序的问题

请看下面这两个链接希望它能帮到你

https://gist.github.com/shu0115/5820702

由于