使用Postgresql扩展模型ActiveRecord

时间:2016-04-09 13:43:41

标签: ruby-on-rails postgresql

我正在尝试扩展ActiveRecord这个类。我正在使用Postgresql

class Jobo::Provider < ActiveRecord::Base
  self.abstract_class = true
end
class Jobo::Stripe < Provider
# code
end

当我尝试添加

self.abstract_class = true

我收到此错误

  

2.2.2:001&gt; Jobo :: Provider.first TypeError:没有将nil隐式转换为String   /Users/Michelin/.rvm/gems/ruby-2.2.2/gems/activerecord-4.2.0/lib/active_record/connection_adapters/postgresql/utils.rb:24:in` quote_ident&#39;来自/Users/Michelin/.rvm /

我的错误在哪里?

0 个答案:

没有答案