instiki/vendor/rails/activerecord/test/fixtures/order.rb
2007-01-22 07:43:50 -06:00

5 lines
217 B
Ruby

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