aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/order.rb
blob: ba114f22c61f3b92166b67855f156b700fd4448a (plain) (blame)
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