rails/activerecord/test/models/friendship.rb

5 lines
189 B
Ruby

class Friendship < ActiveRecord::Base
belongs_to :friend, class_name: 'Person'
belongs_to :follower, foreign_key: 'friend_id', class_name: 'Person', counter_cache: :followers_count
end