Tagged Questions

3
votes
1answer
66 views

Separate Polymorphic Association table

After reading the Ruby on Rails guides and a few of the stackoverflow responses to questions about polymorphic association I understand its use and implementation but I have a question about a ...
2
votes
1answer
166 views

HABTM Polymorphic Relationship

:) I'm pretty new to Rails, and i'm trying to do a polymorphic HABTM relationship. The problem is that I have three models that I want to relate. The first one is the Event model and then are two ...
2
votes
1answer
207 views

What does has_many_polymorphs mean by “Referential integrity violation”?

I have a has_many_polymorphs relationship between a Candidate and many events of various type. In particular, a Candidate creates a Created event when it is created. class Candidate < ...
1
vote
2answers
460 views

Multiple has_many_polymorphs in one model

I'm trying to define multiple polymorphic relations (has_many_polymorphs plugin) from a single parent to same children. Note has many viewers Note has many editors Viewers could be either Users or ...
0
votes
0answers
52 views

Problem with Polymorphic has_many

I have the following table "participations": id: integer coupon_id: integer participant_type: string participant_id: integer and I have the following models: class Participation < ...