Files
rails/activerecord/test/models/organization.rb
Matt Duncan 3b3798506b Adding :from scoping to ActiveRecord calculations
Signed-off-by: Michael Koziarski <michael@koziarski.com>
[#1229 state:committed]
2009-08-09 12:43:07 +12:00

6 lines
163 B
Ruby

class Organization < ActiveRecord::Base
has_many :member_details
has_many :members, :through => :member_details
named_scope :clubs, { :from => 'clubs' }
end