Skip to content

Commit

Permalink
Merge pull request #5381 from concourse/fix-gc-downgrade
Browse files Browse the repository at this point in the history
atc: fix error in container gc down migration
  • Loading branch information
Joshua Winters committed Mar 30, 2020
2 parents 60a0724 + fc0b532 commit 2d98220
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 2d98220

Please sign in to comment.