Adds models, handlers, and tests for tagClass, tag, and TagValue classes

This commit is contained in:
Patrick McDonagh
2017-09-28 17:40:39 -05:00
parent 0101ceaccc
commit 2794594780
15 changed files with 1414 additions and 3 deletions

14
db.sql Normal file
View File

@@ -0,0 +1,14 @@
CREATE DATABASE IF NOT EXISTS lumberjack ;
USE lumberjack;
CREATE USER 'website'@'localhost' IDENTIFIED BY 'henrypump';
GRANT ALL ON *.* TO 'website'@'localhost';
CREATE USER 'website'@'127.0.0.1' IDENTIFIED BY 'henrypump';
GRANT ALL ON *.* TO 'website'@'127.0.0.1';
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;