Initial Commit

This commit is contained in:
Patrick McDonagh
2015-12-08 20:48:00 -06:00
commit 151976dd7a
18 changed files with 994 additions and 0 deletions

7
setupUsers.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE USER 'website'@'localhost' IDENTIFIED BY 'henrypump';
GRANT ALL ON *.* TO 'website'@'localhost';
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'henrypump';
GRANT ALL ON *.* to 'admin'@'localhost';
CREATE USER 'admin'@'%' IDENTIFIED BY 'henrypump';
GRANT ALL ON *.* to 'admin'@'%';
FLUSH PRIVILEGES;