From 82f186b4f9211d3c9eac7c1ace2f2bb2cdc1e9bd Mon Sep 17 00:00:00 2001 From: Raelon Masters Date: Tue, 7 Apr 2020 14:25:59 -0400 Subject: [PATCH] Restructured create_db.sql --- create_db.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_db.sql b/create_db.sql index 0ffee21..4c09394 100755 --- a/create_db.sql +++ b/create_db.sql @@ -1 +1 @@ -CREATE DATABASE "pyshelf"; CREATE USER "pyshelf" WITH PASSWORD "pyshelf"; GRANT ALL PRIVILEGES ON DATABASE "pyshelf" TO "pyshelf"; +CREATE DATABASE pyshelf; CREATE USER pyshelf WITH PASSWORD pyshelf; GRANT ALL PRIVILEGES ON DATABASE pyshelf TO pyshelf;