I have a simple problem, but finding the solution is NOT that simple.
I have two models, Person, Skill
Person has many skills
Skills belong to person
In the database, Person table has a skill_id which takes the id from the Skills table as foreign key.
In the view I am trying to list the skills for that Person by name, I can get them by id, but how can I retrieve the name field from the Skills table.
Person.html(view)
<p>Current skills for: <b><%= "#{ @person.name }" -%></b></p>
<% @people.each do |p| %>
<p>Age: <%= "#{p.age}" %></p>
<p><%= "#{p.start_date}" %></p>
<p><%= "#{p.skill_id}" %></p>
<% end %>
Person has_many :skillsmeans that Person is the Parent in the association. So how can you setskill_idas foreign key in Person model. Rather Skill model should have the Person as a reference. Actually this is a many-to-many scenario. A particular skill can be shared by many people. So you might re-consider the database structure. :) You can try using a join model to represent this, as follows: – Rohit Jan 21 '11 at 12:03has_many :person_skills has_many :skills, :through => :person_skills. In Skill Modelhas_many :person_skills has_many :persons, :through => :person_skills. In PersonSkill Modelbelongs_to => :person belongs_to :skill– Rohit Jan 21 '11 at 12:06