matrix-synapse/templates/setup_db.psql.j2
author Luke Hoersten <luke@hoersten.org>
Tue, 09 Jun 2020 19:14:49 -0500
changeset 39 90b1b7c4be70
child 46 f43ad090546d
permissions -rw-r--r--
Added pgsql support for matrix.
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}}';
90b1b7c4be70 Added pgsql support for matrix.
Luke Hoersten <luke@hoersten.org>
parents:
diff changeset
     2
CREATE DATABASE {{matrix_synapse_pgsql_db}} ENCODING 'UTF8' LC_COLLATE='C' LC_CTYPE='C' template=template0 WITH OWNER {{matrix_synapse_pgsql_user}};