matrix-synapse/templates/setup_db.psql.j2
author Luke Hoersten <luke@hoersten.org>
Sun, 14 Jun 2020 15:22:25 -0500
changeset 46 f43ad090546d
parent 39 90b1b7c4be70
permissions -rw-r--r--
Fixed psql sytnax
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39
90b1b7c4be70 Added pgsql support for matrix.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     1
CREATE USER {{matrix_synapse_pgsql_user}} WITH ENCRYPTED PASSWORD '{{matrix_synapse_pgsql_pass}}';
46
f43ad090546d Fixed psql sytnax
Luke Hoersten <luke@hoersten.org>
parents: 39
diff changeset
     2
CREATE DATABASE {{matrix_synapse_pgsql_db}} ENCODING 'UTF8' LC_COLLATE='C.UTF-8' LC_CTYPE='C.UTF-8' template=template0 OWNER {{matrix_synapse_pgsql_user}};