atc: fix error in container gc down migration

Signed-off-by: Josh Winters <jwinters@pivotal.io>
This commit is contained in:
Josh Winters 2020-03-30 16:17:27 -04:00
parent 60a0724cd8
commit fc0b532382
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
BEGIN; BEGIN;
ALTER TABLE containers DROP COLUMN last_hijack; ALTER TABLE containers DROP COLUMN last_hijack;
ALTER TABLE containers ADD COLUMN hijacked 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, ALTER TABLE containers ADD COLUMN discontinued boolean DEFAULT false NOT NULL;
COMMIT; COMMIT;