2009-03-09 09:42:51 -04:00
|
|
|
class Toy < ActiveRecord::Base
|
2011-11-29 13:58:41 -05:00
|
|
|
self.primary_key = :toy_id
|
2009-03-09 09:42:51 -04:00
|
|
|
belongs_to :pet
|
2011-08-29 10:01:17 -04:00
|
|
|
|
2012-03-21 18:18:18 -04:00
|
|
|
scope :with_pet, -> { joins(:pet) }
|
2009-03-09 09:42:51 -04:00
|
|
|
end
|