Files
openfoodnetwork/app/models/distributor_shipping_method.rb
2014-07-04 14:39:26 +10:00

6 lines
238 B
Ruby

class DistributorShippingMethod < ActiveRecord::Base
self.table_name = "distributors_shipping_methods"
belongs_to :shipping_method, class_name: Spree::ShippingMethod
belongs_to :distributor, class_name: Enterprise, touch: true
end