Sha256: bc4c0adb9bdd449fbbe038542b5e34c0221fea52dceaf21be0ebe691c1843540
Contents?: true
Size: 1.04 KB
Versions: 9
Compression:
Stored size: 1.04 KB
Contents
class CreateDefaultStock < ActiveRecord::Migration def up Spree::StockLocation.skip_callback(:create, :after, :create_stock_items) Spree::StockItem.skip_callback(:save, :after, :process_backorders) location = Spree::StockLocation.new(name: 'default') location.save(validate: false) Spree::Variant.all.each do |variant| stock_item = Spree::StockItem.unscoped.build(stock_location: location, variant: variant) stock_item.send(:count_on_hand=, variant.count_on_hand) # Avoid running default_scope defined by acts_as_paranoid, related to #3805, # validations would run a query with a delete_at column tha might not be present yet stock_item.save! validate: false end remove_column :spree_variants, :count_on_hand end def down add_column :spree_variants, :count_on_hand, :integer Spree::StockItem.all.each do |stock_item| stock_item.variant.update_column :count_on_hand, stock_item.count_on_hand end Spree::StockLocation.delete_all Spree::StockItem.delete_all end end
Version data entries
9 entries across 9 versions & 1 rubygems