rails/activerecord/test/models/order.rb
2017-07-19 22:27:07 +03:00

7 lines
234 B
Ruby

# 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