Mention that postgres databases must have the correct charset encoding

pull/136/head
Erik Johnston 2015-04-29 11:50:18 +01:00
parent f4c9ebbc34
commit 72443572bf
1 changed files with 17 additions and 0 deletions

View File

@ -1,6 +1,23 @@
Using Postgres
--------------
Set up database
===============
The PostgreSQL database used *must* have the correct encoding set, otherwise
would not be able to store UTF8 strings. To create a database with the correct
encoding use, e.g.::
CREATE DATABASE synapse
ENCODING 'UTF8'
LC_COLLATE='C'
LC_CTYPE='C'
template=template0
OWNER synapse_user;
This would create an appropriate database named ``synapse`` owned by the
``synapse_user`` user (which must already exist).
Set up client
=============