Sha256: 3d1659131632f8e14b1345fd756872256b16459feeb1038e0432598fe1106f31
Contents?: true
Size: 324 Bytes
Versions: 19
Compression:
Stored size: 324 Bytes
Contents
module Spree class Classification < ActiveRecord::Base self.table_name = 'spree_products_taxons' belongs_to :product, class_name: "Spree::Product" belongs_to :taxon, class_name: "Spree::Taxon" # For #3494 validates_uniqueness_of :taxon_id, :scope => :product_id, :message => :already_linked end end
Version data entries
19 entries across 19 versions & 1 rubygems