This commit is contained in:
Samuel Vermeulen 2023-05-18 15:43:18 +02:00
parent d0ac0b145f
commit bcb3df8ae6

4
rivendell.sql Normal file
View File

@ -0,0 +1,4 @@
CREATE DATABASE Rivendell;
GRANT Select, Insert, Update, Delete, Create, Drop, References, Index, Alter, Create Temporary Tables, Lock Tables on Rivendell.* to rduser@'%' identified by 'letmein';
FLUSH PRIVILEGES;
SET @@global.sql_mode= 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';