Skip to content

Instantly share code, notes, and snippets.

@incorvia
Created October 12, 2011 17:38
Show Gist options
  • Save incorvia/1281937 to your computer and use it in GitHub Desktop.
Save incorvia/1281937 to your computer and use it in GitHub Desktop.
Models
User
has_many :friendships
has_many :friends, :through => friendships
has_many :invites
has_many :events :through => invites
Friendship
belongs_to :user
belongs_to :friend, :class_name => “User”
Invites
belongs_to :user
belongs_to :event
Event
has_many :invites
has_many :users :through => invites
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment