aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/pet_treasure.rb
blob: 2d552bf50c3e1846d0e52d748b7e215166623252 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true
class PetTreasure < ActiveRecord::Base
  self.table_name = "pets_treasures"

  belongs_to :pet
  belongs_to :treasure
end