aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/member.rb
blob: 688725f200754df91a33e8eb2c0cd1ef6d6a6fa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
class Member < ActiveRecord::Base
  has_one :current_membership
  has_many :memberships
  has_many :fellow_members, :through => :club, :source => :members
  has_one :club, :through => :current_membership
  has_one :favourite_club, :through => :memberships, :conditions => ["memberships.favourite = ?", true], :source => :club
  has_one :sponsor, :as => :sponsorable
  has_one :sponsor_club, :through => :sponsor
end