Guest User

Untitled

a guest
Feb 21st, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #User.rb
  2. has_many :courses
  3. has_many :enrollments
  4. has_many :enrolled_courses, through: :enrollments, source: :course
  5.  
  6. #Enrollment.rb
  7. belongs_to :course
  8. belongs_to :user
  9.  
  10. #Course.rb
  11. belongs_to :user
  12. has_many :enrollments
  13. has_many :users, through: :enrollment
Add Comment
Please, Sign In to add comment