Sha256: 6d8ff57f5df12428ea7e9bb9ae77cbd57979952f544f0fdd81bc93619c51e72b
Contents?: true
Size: 342 Bytes
Versions: 130
Compression:
Stored size: 342 Bytes
Contents
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
130 entries across 130 versions & 3 rubygems