summaryrefslogtreecommitdiff
path: root/util/sql
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2017-12-29 08:59:47 +0100
committerYorhel <git@yorhel.nl>2017-12-29 09:00:15 +0100
commitdc15b3f21c4004c2ede86de853eb28f218b7090e (patch)
treed95b471ba0af5c41090cd78f99033e5eda8b0344 /util/sql
parent56c6772aa792122931f415c3049491c685f678a4 (diff)
Experimenting with PostgreSQL 10: "UNENCRYPTED" keyword has been removed
Diffstat (limited to 'util/sql')
-rw-r--r--util/sql/superuser_init.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql/superuser_init.sql b/util/sql/superuser_init.sql
index 1a2602cd..6e94167c 100644
--- a/util/sql/superuser_init.sql
+++ b/util/sql/superuser_init.sql
@@ -4,7 +4,7 @@
-- In order to "activate" a user, i.e. to allow login, you need to manually run
-- the following for each user you want to activate:
--- ALTER ROLE rolename LOGIN UNENCRYPTED PASSWORD 'password';
+-- ALTER ROLE rolename LOGIN PASSWORD 'password';
CREATE ROLE vndb;
CREATE DATABASE vndb OWNER vndb;