831be98f9a
1e6c50e21b
1a474cc8e4
735d985b01
0a12a5f816
1 2
3
4
5
6
7
8
# frozen_string_literal: true class Toy < ActiveRecord::Base self.primary_key = :toy_id belongs_to :pet scope :with_pet, -> { joins(:pet) } end