octopod/migrations/revert/archived_flag.sql

11 lines
183 B
MySQL
Raw Normal View History

2020-12-09 16:20:24 +03:00
-- Revert octopod:archived_flag from pg
BEGIN;
ALTER TABLE deployments DROP archived;
ALTER TABLE deployments DROP archived_at;
ALTER TABLE deployment_logs DROP archived;
COMMIT;