Skip to content

Commit

Permalink
Revert "Add missing role and database creation."
Browse files Browse the repository at this point in the history
This reverts commit e3bb74c.
  • Loading branch information
emmiegit committed Jul 7, 2024
1 parent c0a169f commit e393b36
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions install/files/postgres/init/02-seed.sql
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
SET default_transaction_read_only = off;

CREATE ROLE wikijump
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS ENCRYPTED PASSWORD 'wikijump';

CREATE DATABASE wikijump
WITH OWNER wikijump;

CREATE ROLE wikijump_ro
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS ENCRYPTED PASSWORD 'wikijump_ro';
WITH INHERIT NOSUPERUSER NOCREATEDB LOGIN NOREPLICATION NOBYPASSRLS PASSWORD 'wikijump_ro';

\connect wikijump

Expand Down

0 comments on commit e393b36

Please sign in to comment.