From 7c5029188947c6b26541157ceeb7014a48ff5359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arthur=20Greg=C3=B3rio?= Date: Fri, 13 Apr 2018 17:26:51 -0300 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 4b74342..5016b94 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,16 @@ CREATE USER sa_library WITH NOCREATEROLE NOREPLICATION ENCRYPTED PASSWORD 'sa_library'; + + -- the databse + CREATE DATABASE library + WITH + OWNER = sa_library + ENCODING = 'UTF8' + LC_COLLATE = 'en_US.utf8' + LC_CTYPE = 'en_US.utf8' + TABLESPACE = pg_default + CONNECTION LIMIT = -1; ``` The tables and the initial data (default user, group and authorizations) will be created by Flyway with the migrations strategy.