应用和迁移在本地工作正常,但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宝石。有什么想法吗?谢谢!