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

5 lines
102 B
Ruby
Raw Normal View History

2014-10-15 13:17:36 -04:00
class Friendship < ActiveRecord::Base
belongs_to :user
belongs_to :friend, class_name: 'User'
end