instiki/vendor/rails/activerecord/test/models/owner.rb

6 lines
118 B
Ruby
Raw Normal View History

class Owner < ActiveRecord::Base
set_primary_key :owner_id
has_many :pets
has_many :toys, :through => :pets
end