aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/pet.rb
blob: dc1a3c5e94e4e5b13508b2654658589c67eeabbf (plain) (blame)
1
2
3
4
5
class Pet < ActiveRecord::Base
  set_primary_key :pet_id
  belongs_to :owner
  has_many :toys
end