aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/club.rb
blob: 171445df3ee5a80fabfbe7d4e4ae7b21c2609aa8 (plain) (blame)
1
2
3
4
5
6
class Club < ActiveRecord::Base
  has_many :memberships
  has_many :members, :through => :memberships
  has_many :current_memberships
  has_many :sponsors
end