Skip to content

Instantly share code, notes, and snippets.

@olly
Created September 17, 2014 12:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olly/963de94953d83c8094a3 to your computer and use it in GitHub Desktop.
Save olly/963de94953d83c8094a3 to your computer and use it in GitHub Desktop.
class User
has_many :friendships
has_many :friends, through: :friendships
end
class Friendship
belongs_to :friend, class: User
belongs_to :friendee, class: User
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment