mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9ac81b954a
Don't include inheritance column in the through_scope_attributes
23 lines
704 B
Ruby
23 lines
704 B
Ruby
class Club < ActiveRecord::Base
|
|
has_one :membership
|
|
has_many :memberships, :inverse_of => false
|
|
has_many :members, :through => :memberships
|
|
has_one :sponsor
|
|
has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
|
|
belongs_to :category
|
|
|
|
has_many :favourites, -> { where(memberships: { favourite: true }) }, through: :memberships, source: :member
|
|
|
|
private
|
|
|
|
def private_method
|
|
"I'm sorry sir, this is a *private* club, not a *pirate* club"
|
|
end
|
|
end
|
|
|
|
class SuperClub < ActiveRecord::Base
|
|
self.table_name = "clubs"
|
|
|
|
has_many :memberships, class_name: 'SuperMembership', foreign_key: 'club_id'
|
|
has_many :members, through: :memberships
|
|
end
|