-- migrate:up
ALTER TABLE orders_packing_queue
ADD is_oos_sku int NULL

-- migrate:down
ALTER TABLE orders_packing_queue 
DROP COLUMN is_oos_sku;