blob: 36866b398f4aeeba018e9c553dba6185d8a6bd64 (
plain) (
tree)
|
|
# 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
|