Made things look a little nicer

This commit is contained in:
William Miceli
2019-12-03 22:24:42 -05:00
parent dff8bd9306
commit 4139767a22
14 changed files with 77 additions and 70 deletions

View File

@@ -13,7 +13,7 @@ EOF
# Setting up the basics
mysql -u root << EOF
CREATE USER 'web'@'localhost' IDENTIFIED BY 'Password456';
CREATE DATABASE friendBook;
GRANT ALL PRIVILEGES ON friendBook . * TO 'web'@'localhost';
CREATE DATABASE friendbook;
GRANT ALL PRIVILEGES ON friendbook . * TO 'web'@'localhost';
FLUSH PRIVILEGES;
EOF