Guest User

Untitled

a guest
Apr 26th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Location
  2. belongs_to :region
  3. end
  4.  
  5. class Occurance
  6. has_one :location
  7. end
  8.  
  9. class Event
  10. has_many :occurances
  11. has_many :locations, :through => :occurances
  12. end
Add Comment
Please, Sign In to add comment