From 54b95b407fb75c09c4c2e56b4da6e92315592037 Mon Sep 17 00:00:00 2001 From: Beng Eu Date: Thu, 10 Feb 2022 15:24:49 +0800 Subject: [PATCH] fix: revert "make migration idempotent" This reverts commit 47b12abd40a6355f79d47bf17b8ce00e9b2a2d14, which is causing error "Migration failed. Reason: Hashes don't match for migrations '0007-add-public-to-buckets.sql'. This means that the scripts have changed since it was applied." --- migrations/tenant/0007-add-public-to-buckets.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/tenant/0007-add-public-to-buckets.sql b/migrations/tenant/0007-add-public-to-buckets.sql index 64a668b12..7603c2221 100644 --- a/migrations/tenant/0007-add-public-to-buckets.sql +++ b/migrations/tenant/0007-add-public-to-buckets.sql @@ -1 +1 @@ -ALTER TABLE storage.buckets ADD COLUMN IF NOT EXISTS "public" boolean default false; \ No newline at end of file +ALTER TABLE storage.buckets ADD COLUMN "public" boolean default false; \ No newline at end of file