2008-11-15 01:59:12 -05:00
|
|
|
class Organization < ActiveRecord::Base
|
|
|
|
has_many :member_details
|
|
|
|
has_many :members, :through => :member_details
|
2009-08-08 20:10:01 -04:00
|
|
|
|
2010-01-17 18:08:19 -05:00
|
|
|
scope :clubs, { :from => 'clubs' }
|
2008-11-15 01:59:12 -05:00
|
|
|
end
|