Skip to content

Commit d2d6627

Browse files
committed
re-enable vault for branch.
1 parent eef2965 commit d2d6627

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

ansible/tasks/setup-extensions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
- name: Install auto_explain
6565
import_tasks: tasks/postgres-extensions/21-auto_explain.yml
6666

67-
# - name: Install vault
68-
# import_tasks: tasks/postgres-extensions/23-vault.yml
67+
- name: Install vault
68+
import_tasks: tasks/postgres-extensions/23-vault.yml
6969

7070
- name: Install PGroonga
7171
import_tasks: tasks/postgres-extensions/24-pgroonga.yml

ebssurrogate/files/unit-tests/unit-test-01.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ SELECT extensions_are(
1111
'pg_graphql',
1212
'pgcrypto',
1313
'pgjwt',
14-
'uuid-ossp'
14+
'uuid-ossp',
15+
'supabase_vault'
1516
]
1617
);
1718

migrations/db/migrations/20221207154255_create_pgsodium_and_vault.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ grant execute on function pgsodium.crypto_aead_det_decrypt(bytea, bytea, uuid, b
1010
grant execute on function pgsodium.crypto_aead_det_encrypt(bytea, bytea, uuid, bytea) to service_role;
1111
grant execute on function pgsodium.crypto_aead_det_keygen to service_role;
1212

13-
-- create extension if not exists supabase_vault;
13+
create extension if not exists supabase_vault;
1414

1515
-- migrate:down

migrations/tests/database/exists.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ SELECT schemas_are(ARRAY[
66
'graphql',
77
'graphql_public',
88
'realtime',
9+
'vault',
910
'storage'
1011
]);

0 commit comments

Comments
 (0)