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

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

