Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgregorio committed Apr 13, 2018
1 parent b7aa610 commit 7c50291
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 7c50291

Please sign in to comment.