Reset negative count on hand in existing non backorderable stock items

This commit is contained in:
Kristina Lim
2020-05-15 01:56:34 +08:00
committed by Luis Ramos
parent 4694f1b21a
commit 20fd3c2642

View File

@@ -0,0 +1,19 @@
# frozen_string_literal: true
class ResetNegativeNonbackorderableCountOnHandInStockItems < ActiveRecord::Migration
module Spree
class StockItem < ActiveRecord::Base
self.table_name = "spree_stock_items"
end
end
def up
Spree::StockItem.where(backorderable: false)
.where("count_on_hand < 0")
.update_all(count_on_hand: 0)
end
def down
raise ActiveRecord::IrreversibleMigration
end
end