Sha256: 489a069cfe8546a6953b6d26f4c365ca4de40373a6a8bf94a0b72def1f624fc0
Contents?: true
Size: 357 Bytes
Versions: 96
Compression:
Stored size: 357 Bytes
Contents
# frozen_string_literal: true module Spree class ProductOptionType < Spree::Base belongs_to :product, class_name: 'Spree::Product', inverse_of: :product_option_types, touch: true, optional: true belongs_to :option_type, class_name: 'Spree::OptionType', inverse_of: :product_option_types, optional: true acts_as_list scope: :product end end
Version data entries
96 entries across 96 versions & 1 rubygems