aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/member.rb
blob: e6e78f9e45225e790e3394bb00d3e2cf2db765e7 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                 
                     

                                                                  
                                                                                                                        
                                                                                                                                            

                                             

                                                   
                         


                                                                                


                                                                      
   
class Member < ActiveRecord::Base
  has_one :current_membership
  has_one :membership
  has_many :fellow_members, :through => :club, :source => :members
  has_one :club, :through => :current_membership
  has_one :favourite_club, :through => :membership, :conditions => ["memberships.favourite = ?", true], :source => :club
  has_one :hairy_club, :through => :membership, :conditions => {:clubs => {:name => "Moustache and Eyebrow Fancier Club"}}, :source => :club
  has_one :sponsor, :as => :sponsorable
  has_one :sponsor_club, :through => :sponsor
  has_one :member_detail
  has_one :organization, :through => :member_detail
  belongs_to :member_type

  has_many :current_memberships
  has_one :club_through_many, :through => :current_memberships, :source => :club

  has_many :current_memberships, :conditions => { :favourite => true }
  has_many :clubs, :through => :current_memberships
end