aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/order.rb
blob: c8693586a0e93d26ce1092b14ac76add9a0d5855 (plain) (blame)
1
2
3
4
5
# frozen_string_literal: true
class Order < ActiveRecord::Base
  belongs_to :billing, class_name: "Customer", foreign_key: "billing_customer_id"
  belongs_to :shipping, class_name: "Customer", foreign_key: "shipping_customer_id"
end