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

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

