【发布时间】:2009-08-05 20:39:39
【问题描述】:
我在Candidate 和许多不同类型的事件之间有一个has_many_polymorphs 关系。特别是,Candidate 在创建时会创建 Created 事件。
class Candidate < ActiveRecord::Base
has_many_polymorphs :events, :through => :candidate_events,
:from => Event::Base.included_in_classes.map { |klass|
klass.to_s.underscore.pluralize.to_sym
})
after_validation_on_create :create_created_event
private
def create_creation_event
Event::Created.create!(:candidate => self, :creator => creator)
end
end
class CandidateEvent < ActiveRecord::Base
belongs_to :candidate
belongs_to :event, :polymorphic => true
end
module Event::Base
...
end
class Event::Created < ActiveRecord::Base
include Event::Base
validates_presence_of :creator
end
当我运行单元测试时,一切都很好。当我运行我的功能测试时,一切都很好。当我运行我的集成(Cucumber)测试时,一切都很好。当我在生产中运行时,一切都很好。当我尝试在开发模式下运行(打开类重新加载)时,我得到了
Referential integrity violation; child <Event::Created:1> was not found for :events.
Expected record['candidate_events.event_id'] (1) to be equal to record['created_events.id'] ().
{
"candidate_events.event_type"=>"Event::Created",
"candidate_events.created_at"=>"2009-08-05 20:28:31",
"candidate_events.updated_at"=>"2009-08-05 20:28:31",
"candidate_events.candidate_id"=>"1",
"candidate_events.event_id"=>"1",
"candidate_events.id"=>"1"
}
在同一(开发)环境中运行 script/console 我看到 Event::Created 对象与 CandidateEvent 交叉引用模型具有适当的关系。
发生了什么事?
【问题讨论】:
-
您能否向我们展示一些针对您开发数据库中这些表中相关行的 sql 查询的结果?
-
他们真的直截了当。我只有一行,每个都有正确的外键(都是“1”)
标签: ruby-on-rails ruby activerecord has-many-polymorphs