Sha256: ecfd440a43aa32a96229a305bc7b768c3cd649594645d3914c677b58bd8f8cdf

Contents?: true

Size: 1.26 KB

Versions: 9

Compression:

Stored size: 1.26 KB

Contents

# This migration comes from spree (originally 20130213191427)
class CreateDefaultStock < ActiveRecord::Migration[4.2]
  def up
    unless column_exists? :spree_stock_locations, :default
      add_column :spree_stock_locations, :default, :boolean, null: false, default: false
    end

    Spree::StockLocation.skip_callback(:create, :after, :create_stock_items)
    Spree::StockLocation.skip_callback(:save, :after, :ensure_one_default)
    location = Spree::StockLocation.new(name: 'default')
    location.save(validate: false)

    Spree::Variant.find_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 that 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.find_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 & 2 rubygems

Version Path
spree_purchase_order-3.7.0 spec/dummy/db/migrate/20191113195735_create_default_stock.spree.rb
spree_billing_sisow-0.9.2 spec/dummy/db/migrate/20190729091676_create_default_stock.spree.rb
spree_billing_sisow-0.9.1 spec/dummy/db/migrate/20190729091676_create_default_stock.spree.rb
spree_purchase_order-3.6.0 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb
spree_purchase_order-3.5.0 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb
spree_purchase_order-3.5.0.rc1 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb
spree_purchase_order-3.4.0 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb
spree_purchase_order-3.3.0 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb
spree_purchase_order-3.2.0 spec/dummy/db/migrate/20180516181864_create_default_stock.spree.rb