instiki/vendor/rails/activerecord/test/models/club.rb

7 lines
257 B
Ruby
Raw Normal View History

class Club < ActiveRecord::Base
has_many :memberships
has_many :members, :through => :memberships
has_many :current_memberships
has_one :sponsor
has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
end