Have just installed rails 2.2.2 My application has many
has_many_trough
associtions. With rails 2.2.2 I got an error trying to access some of
them
Event Model
has_many :people,:through => :participants
has_many :participants
Person Model
has_many :events,:through => :participants
has_many :participants
Table participants has the fields, event_id, person_id, role
Do you need to create the :participants association before you create
associations through it ?