diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-12-25 19:59:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-01-08 18:26:00 +0200 |
commit | dd0f7ec5e776c25cbb0b6715bf62d52a9965f9b1 (patch) | |
tree | e8fc9bfd3e321dcff09b73b543635f02f456d0f7 /INSTALL-DEV | |
parent | 0882ffc1e3480feb3c067c1f8c961fc384de17e9 (diff) |
Support version release
Diffstat (limited to 'INSTALL-DEV')
-rw-r--r-- | INSTALL-DEV | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/INSTALL-DEV b/INSTALL-DEV index 62c2437..3ba9ff5 100644 --- a/INSTALL-DEV +++ b/INSTALL-DEV @@ -28,7 +28,8 @@ group, not user. However, most installations use the same name for both.] $ sudo sudo -u postgres psql # Note: double sudo is not a mistake. -CREATE DATABASE brep; +CREATE DATABASE brep TEMPLATE template0 ENCODING 'UTF8' \ +LC_COLLATE 'en_US.UTF8' LC_CTYPE 'en_US.UTF8'; CREATE USER <user>; GRANT ALL PRIVILEGES ON DATABASE brep TO <user>; CREATE USER "www-data" INHERIT IN ROLE <user>; |