Skip to content

Instantly share code, notes, and snippets.

@pieterjongsma
Created October 11, 2017 10:06
Show Gist options
  • Save pieterjongsma/97863cf0c798fb4bf2f3a15c83fbb3a2 to your computer and use it in GitHub Desktop.
Save pieterjongsma/97863cf0c798fb4bf2f3a15c83fbb3a2 to your computer and use it in GitHub Desktop.
class User
has_many :friendships
has_many :friends, through: :friendships
has_many :attendances
has_many :events, through: :attendances
end
class Event
has_many :attendances
has_many :attendees, through: :attendances, source: :user
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment