Files
rails/activerecord/test/fixtures/person.rb
2006-02-10 05:19:41 +00:00

5 lines
98 B
Ruby

class Person < ActiveRecord::Base
has_many :readers
has_many :posts, :through => :readers
end