+ Moved client to subfolder and added db communication

This commit is contained in:
Alexis
2020-03-20 21:05:28 +01:00
parent c08e07f7b6
commit ef9e98641a
24 changed files with 13069 additions and 12559 deletions

View File

@@ -1,3 +1,14 @@
DROP USER IF EXISTS 'archivist'@'%';
CREATE USER 'archivist'@'%'
IDENTIFIED BY 'root';
GRANT ALL
ON spellsaurus.*
TO 'archivist'@'%';
FLUSH PRIVILEGES;
DROP DATABASE IF EXISTS spellsaurus;
CREATE DATABASE spellsaurus;
USE spellsaurus;