Don't force encoding

This commit is contained in:
Ajay 2022-05-04 15:36:51 -04:00
parent c5f163e41e
commit 2e4b7a0c9c

View file

@ -94,9 +94,6 @@ export class Postgres implements IDatabase {
await client.query(`CREATE DATABASE "${this.config.postgres.database}"
WITH
OWNER = ${this.config.postgres.user}
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.utf8'
LC_CTYPE = 'en_US.utf8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;`
);