rails/activerecord/test/models/toy.rb
2017-07-19 22:27:07 +03:00

9 lines
152 B
Ruby

# frozen_string_literal: true
class Toy < ActiveRecord::Base
self.primary_key = :toy_id
belongs_to :pet
scope :with_pet, -> { joins(:pet) }
end