我正在尝试将所有者字段添加到 DelayedJob。我发现this SO answer显示了一种方法
但是当我像那个答案中提到的那样编写代码时,在rails控制台中我会这样做
SomeArModel.new.jobs
我收到此错误:
NameError: uninitialized constant ActiveRecord::Base::Delayed::Job
错误指向has_many
:
class ActiveRecord::Base
has_many :jobs, :class_name => "Delayed::Job", :as => :owner
....
关于这里发生了什么以及如何解决它的任何想法?