create sql folder

This commit is contained in:
Peter Rounce 2023-02-18 14:17:14 +00:00
parent 9545e5bd4e
commit aa5ccaded0
6 changed files with 4 additions and 4 deletions

View file

@ -12,10 +12,10 @@ echo Continue? "(y or n)"
read x read x
if [ "$x" = "y" ]; then if [ "$x" = "y" ]; then
psql postgres -f create_db_init.sql psql postgres -f sql/create_db_init.sql
psql postgres -f create_db.sql psql postgres -f sql/create_db.sql
psql postgres -f create_db_user.sql psql postgres -f sql/create_db_user.sql
psql postgres -f settings.sql psql postgres -f sql/settings.sql
echo Database created echo Database created
else else
echo No action echo No action