From 578e2758f13b0e5dcac7e0ca31a1efc6aba31aaa Mon Sep 17 00:00:00 2001 From: angelico Date: Wed, 16 Oct 2024 17:53:02 +0800 Subject: [PATCH] fix: only consider pgsodium to be valid if they are in these versions (#1276) * fix: only consider pgsodium to be valid if they are in these versions * chore: add 3.1.9 jic --- .../db/migrations/20221207154255_create_pgsodium_and_vault.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/db/migrations/20221207154255_create_pgsodium_and_vault.sql b/migrations/db/migrations/20221207154255_create_pgsodium_and_vault.sql index ede303451..3d3867ab5 100644 --- a/migrations/db/migrations/20221207154255_create_pgsodium_and_vault.sql +++ b/migrations/db/migrations/20221207154255_create_pgsodium_and_vault.sql @@ -9,6 +9,7 @@ BEGIN select count(*) = 1 from pg_available_extensions where name = 'pgsodium' + and default_version in ('3.1.6', '3.1.7', '3.1.8', '3.1.9') ); vault_exists = (