Adds models, handlers, and tests for tagClass, tag, and TagValue classes
This commit is contained in:
14
db.sql
Normal file
14
db.sql
Normal 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;
|
||||
Reference in New Issue
Block a user