mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
273b21faa9
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9067 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
9 lines
No EOL
415 B
Ruby
9 lines
No EOL
415 B
Ruby
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 |