From f0c19940c1a8737dc76ffa39d12acb170199cd00 Mon Sep 17 00:00:00 2001 From: Raelon Masters Date: Tue, 7 Apr 2020 15:37:02 -0400 Subject: [PATCH] Changed database calls --- create_db.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_db.sql b/create_db.sql index 3cd05a2..b6c6d55 100755 --- a/create_db.sql +++ b/create_db.sql @@ -1,3 +1,3 @@ -CREATE USER pyshelf WITH PASSWORD pyshelf; +CREATE USER pyshelf WITH PASSWORD 'pyshelf'; CREATE DATABASE pyshelf; GRANT ALL PRIVILEGES ON DATABASE pyshelf TO pyshelf;