Skip to content
Snippets Groups Projects
Commit 9230748e authored by Bruno Nocera Zanette's avatar Bruno Nocera Zanette
Browse files

Update script that create psql User/DB

Update script that create psql User/DB
parent 411a9753
No related branches found
No related tags found
No related merge requests found
...@@ -12,4 +12,4 @@ fi ...@@ -12,4 +12,4 @@ fi
username=${1} username=${1}
dbname=${2} dbname=${2}
createdb -U ${username} -h localhost -E UNICODE ${dbname} createdb -h localhost -U postgres -O ${username} -E UNICODE ${dbname}
...@@ -11,4 +11,4 @@ fi ...@@ -11,4 +11,4 @@ fi
username=${1} username=${1}
createuser -h localhost -U postgres -d -A -P ${username} createuser -h localhost -U postgres --no-superuser --pwprompt ${username}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment