Forgot CREATE DATABASE variable

This commit is contained in:
Justin Garrison 2015-02-13 11:17:55 -08:00
parent c863eb3471
commit 1438bacac6
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ if [ "$1" = 'postgres' ]; then
else
op='CREATE'
gosu postgres postgres --single -jE <<-EOSQL
CREATE DATABASE "$POSTGRES_USER" ;
CREATE DATABASE "$POSTGRES_DB" ;
EOSQL
echo
fi