mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
6 lines
118 B
Ruby
6 lines
118 B
Ruby
class Owner < ActiveRecord::Base
|
|
set_primary_key :owner_id
|
|
has_many :pets
|
|
has_many :toys, :through => :pets
|
|
end
|