Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class Course < ActiveRecord::Base
  2. has_many :lessons
  3. end
  4.  
  5. class Lesson < ActiveRecord::Base
  6. belongs_to :courses
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement