aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/toy.rb
blob: 97b877caea34c53fb2694128e7bc3c8ba6ed2150 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true
class Toy < ActiveRecord::Base
  self.primary_key = :toy_id
  belongs_to :pet

  scope :with_pet, -> { joins(:pet) }
end