Skip to content

Instantly share code, notes, and snippets.

@cenan
Created March 13, 2014 14:04
Show Gist options
  • Save cenan/9529095 to your computer and use it in GitHub Desktop.
Save cenan/9529095 to your computer and use it in GitHub Desktop.
class User
has_many friendships
has_many friends, :through => :friendships, source: :friend
end
class Friendship
belongs_to :user
belongs_to :friend, class_name: "User"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment