Skip to content

Commit

Permalink
docs: ajustes na criação do banco de dados #64
Browse files Browse the repository at this point in the history
  • Loading branch information
tacianosilva committed May 1, 2023
1 parent c576232 commit b6f51ce
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ CREATE DATABASE apf_db
WITH
OWNER = apf_user
ENCODING = 'UTF8'
CONNECTION LIMIT = -1;
LC_COLLATE = 'pt_BR.utf8'
LC_CTYPE = 'pt_BR.utf8'
TABLESPACE = pg_default
CONNECTION LIMIT = -1
IS_TEMPLATE = False;

CREATE SCHEMA IF NOT EXISTS apf
AUTHORIZATION apf_user;
Expand Down

0 comments on commit b6f51ce

Please sign in to comment.