We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a230c11 commit 6a343e7Copy full SHA for 6a343e7
postgres/migrations/00-init_postgrest.sql
@@ -1,10 +1,8 @@
1
-- Initial migrations to setup PostgREST
2
3
--- To reduce the chance of env vars being logged, we set values here
4
-set pgrst_jwt_secret '$PGRST_JWT_SECRET'
5
-set pgrst_authenticator_pass '$PGRST_AUTHENTICATOR_PASS'
6
-
7
--- Non-transactional statements (these cannot go inside a transaction)
+-- Set values here to reduce the chance of env vars being logged
+\set pgrst_jwt_secret '$PGRST_JWT_SECRET'
+\set pgrst_authenticator_pass '$PGRST_AUTHENTICATOR_PASS'
8
9
-- Set the JWT secret in the db - despite it being set in the PGRST_JWT_SECRET
10
-- env var, this appears to be also required
0 commit comments