mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
6 lines
237 B
Ruby
6 lines
237 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
|