mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1e6c50e21b
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
5 lines
118 B
Ruby
5 lines
118 B
Ruby
class Owner < ActiveRecord::Base
|
|
set_primary_key :owner_id
|
|
has_many :pets
|
|
has_many :toys, :through => :pets
|
|
end
|