Sha256: 0f663c568e39f64edaf14347d6a9b596971fb4667dd5209ebcc3b00b86864b53
Contents?: true
Size: 404 Bytes
Versions: 14
Compression:
Stored size: 404 Bytes
Contents
# This migration comes from spree (originally 20130802022321) class MigrateTaxCategoriesToLineItems < ActiveRecord::Migration def change Spree::LineItem.find_each do |line_item| next if line_item.variant.nil? next if line_item.variant.product.nil? next if line_item.product.nil? line_item.update_column(:tax_category_id, line_item.product.tax_category_id) end end end
Version data entries
14 entries across 14 versions & 7 rubygems