github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/atc/db/migration/migrations/1548260637_cleanup_unused_objects.down.sql (about) 1 BEGIN; 2 3 CREATE TYPE container_state_old AS ENUM ( 4 'creating', 5 'created', 6 'destroying' 7 ); 8 9 CREATE TYPE volume_state_old AS ENUM ( 10 'creating', 11 'created', 12 'destroying' 13 ); 14 15 ALTER TABLE containers ADD COLUMN best_if_used_by timestamp with time zone; 16 COMMIT;