Merge pull request #5296 from concourse/last-update-down-migration-idempotent

atc/db: behaviour: last_update down is idempotent
This commit is contained in:
Jamie Klassen 2020-03-11 06:09:03 -04:00 committed by GitHub
commit 40d4ad96c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
BEGIN;
ALTER TABLE pipelines
DROP COLUMN "last_updated";
DROP COLUMN IF EXISTS "last_updated";
COMMIT;