mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-26 05:55:15 +00:00
10 lines
293 B
Ruby
10 lines
293 B
Ruby
module Spree
|
|
class OptionValue < ActiveRecord::Base
|
|
belongs_to :option_type
|
|
acts_as_list scope: :option_type
|
|
has_and_belongs_to_many :variants, join_table: 'spree_option_values_variants', class_name: "Spree::Variant"
|
|
|
|
validates :name, :presentation, presence: true
|
|
end
|
|
end
|