1
0
Fork 0
find-us-lunch/app/models/friendship.rb

5 lines
102 B
Ruby

class Friendship < ActiveRecord::Base
belongs_to :user
belongs_to :friend, class_name: 'User'
end