6 lines
157 B
Ruby
6 lines
157 B
Ruby
class Organization < ActiveRecord::Base
|
|
has_many :member_details
|
|
has_many :members, :through => :member_details
|
|
|
|
scope :clubs, { :from => 'clubs' }
|
|
end |