6 lines
114 B
Ruby
6 lines
114 B
Ruby
class Pet < ActiveRecord::Base
|
|
set_primary_key :pet_id
|
|
belongs_to :owner, :touch => true
|
|
has_many :toys
|
|
end
|