-- migrate:up
ALTER TABLE orders_offline
ADD COLUMN is_ppn INT DEFAULT 1;

-- migrate:down
ALTER TABLE orders_offline
DROP COLUMN is_ppn;
