Sha256: b4befd621dd3e0ab98ee9935484fea82905efafc3eddd86d51ab5c6dd5768d1d
Contents?: true
Size: 319 Bytes
Versions: 9
Compression:
Stored size: 319 Bytes
Contents
# This migration comes from spree (originally 20130325163316) class MigrateInventoryUnitSoldToOnHand < ActiveRecord::Migration[4.2] def up Spree::InventoryUnit.where(state: 'sold').update_all(state: 'on_hand') end def down Spree::InventoryUnit.where(state: 'on_hand').update_all(state: 'sold') end end
Version data entries
9 entries across 9 versions & 2 rubygems