diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 11:13:27 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 11:13:27 -0500 |
commit | 5a2ba9c2e7605bb788bc406184547d22c6436867 (patch) | |
tree | cbd988d534e8a8593a31d70571222443f80da0b3 /src/db/migrations/0001.sql | |
parent | fix about modal (diff) | |
download | xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.tar.gz xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.tar.bz2 xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.zip |
v2.1.0, refactor w/ crimson
Diffstat (limited to 'src/db/migrations/0001.sql')
-rw-r--r-- | src/db/migrations/0001.sql | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/db/migrations/0001.sql b/src/db/migrations/0001.sql index d20d895..9f6f312 100644 --- a/src/db/migrations/0001.sql +++ b/src/db/migrations/0001.sql @@ -2,9 +2,6 @@ BEGIN TRANSACTION; SET search_path = public; -- Migration Start -CREATE ROLE authenticator LOGIN NOINHERIT NOCREATEDB NOCREATEROLE NOSUPERUSER; --- scary, make sure the db is not public!!! -ALTER ROLE authenticator WITH PASSWORD 'postgrest'; CREATE ROLE rest_anon NOLOGIN; CREATE ROLE rest_user NOLOGIN; GRANT rest_anon TO authenticator; |