mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
280 B
Ruby
8 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DistributorPaymentMethod < ApplicationRecord
|
|
self.table_name = "distributors_payment_methods"
|
|
belongs_to :payment_method, class_name: "Spree::PaymentMethod", touch: true
|
|
belongs_to :distributor, class_name: "Enterprise", touch: true
|
|
end
|