Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a application where a user belongs to multiple courses and multiple assignments belong to a course. I'm using devise for the user model. I want to be able to find all the courses a user belongs to and all the assignments their courses have.

share|improve this question

1 Answer

up vote 1 down vote accepted

User model: has_and_belongs_to_many :course has_many :assignments, :through => :courses

Course model: has_and_belongs_to :user has_many :assignments

Assignment model: belongs_to :course

this requires an intermediate table CoursesUsers with columns user_id and course_id and column course_id in Assignment

with this give you can do things like current_user.courses current_user.assignments some_course.assignments some_course.users (assuming there is a current_user or some_course)

Read about details here: Active Record Associations Especially how to setup the has_and_belongs_to_many association

share|improve this answer
When I try and run the server I get undefined method `has_and_belongs_to' for #<Class:0x2ba400d71728> – Sam Baumgarten Jan 18 '12 at 20:35
@Sam Baumgarten: sorry, typo. correcte my answer – thorsten müller Jan 19 '12 at 6:08
Thanks, I figured it out. Great Answer – Sam Baumgarten Jan 20 '12 at 5:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.