Commit c1f82b82 by ansible

no message

1 parent 90730972
Showing with 20 additions and 2 deletions
......@@ -12,4 +12,22 @@ CREATE USER wdchat WITH PASSWORD 'BBRyAPNh6g4H9qte'
INHERIT
NOCREATEDB
NOCREATEROLE
NOREPLICATION;
\ No newline at end of file
NOREPLICATION;
CREATE DATABASE "WDCHAT"
WITH
OWNER = wdchat
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
CREATE DATABASE "WDAUTHEN"
WITH
OWNER = wdauthen
ENCODING = 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!