Commit 1bdd6745 by ansible

add drop database if exist

1 parent 62f4c492
Showing with 4 additions and 0 deletions
......@@ -14,6 +14,8 @@ CREATE USER wdchat WITH PASSWORD 'BBRyAPNh6g4H9qte'
NOCREATEROLE
NOREPLICATION;
DROP DATABASE IF EXISTS "WDCHAT"
CREATE DATABASE "WDCHAT"
WITH
OWNER = wdchat
......@@ -23,6 +25,8 @@ CREATE DATABASE "WDCHAT"
TABLESPACE = pg_default
CONNECTION LIMIT = -1;
DROP DATABASE IF EXISTS "WDAUTHEN"
CREATE DATABASE "WDAUTHEN"
WITH
OWNER = wdauthen
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!