Sha256: 2492d4915dc9f1d0f72b97e3ba31884bb3f8426e7dae2acd8e8f8250811371f9
Contents?: true
Size: 409 Bytes
Versions: 9
Compression:
Stored size: 409 Bytes
Contents
# This migration comes from spree (originally 20130802022321) class MigrateTaxCategoriesToLineItems < ActiveRecord::Migration[4.2] 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
9 entries across 9 versions & 2 rubygems