mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-04 22:16:08 +00:00
9 lines
224 B
Ruby
9 lines
224 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
class OptionValuesLineItem < ActiveRecord::Base
|
|
belongs_to :line_item, class_name: 'Spree::LineItem'
|
|
belongs_to :option_value, class_name: 'Spree::OptionValue'
|
|
end
|
|
end
|