Created
March 13, 2014 14:04
-
-
Save cenan/9529095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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