aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/price_estimate.rb
blob: abdff640c706082d48e8088d0eb08565983d5d47 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class PriceEstimate < ActiveRecord::Base
  belongs_to :estimate_of, polymorphic: true
  belongs_to :thing, polymorphic: true
end