aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/order.rb
blob: 4ec7198c88d945fd937937b2045dbb08263190ea (plain) (tree)
1
2
3
4
                                

                                                                                         
   
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