From fc0b5323825ecb38c91c0fa3e14639bc854254c3 Mon Sep 17 00:00:00 2001 From: Josh Winters Date: Mon, 30 Mar 2020 16:17:27 -0400 Subject: [PATCH] atc: fix error in container gc down migration Signed-off-by: Josh Winters --- .../1584109185_add_last_hijack_to_containers.down.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/atc/db/migration/migrations/1584109185_add_last_hijack_to_containers.down.sql b/atc/db/migration/migrations/1584109185_add_last_hijack_to_containers.down.sql index e1e463e64..c56bea52a 100644 --- a/atc/db/migration/migrations/1584109185_add_last_hijack_to_containers.down.sql +++ b/atc/db/migration/migrations/1584109185_add_last_hijack_to_containers.down.sql @@ -1,6 +1,6 @@ BEGIN; ALTER TABLE containers DROP COLUMN last_hijack; - ALTER TABLE containers ADD COLUMN hijacked boolean DEFAULT false NOT NULL, - ALTER TABLE containers ADD COLUMN discontinued boolean DEFAULT false NOT NULL, + ALTER TABLE containers ADD COLUMN hijacked boolean DEFAULT false NOT NULL; + ALTER TABLE containers ADD COLUMN discontinued boolean DEFAULT false NOT NULL; COMMIT;