5 lines
282 B
SQL
5 lines
282 B
SQL
CREATE DATABASE Rivendell;
|
|
GRANT Select, Insert, Update, Delete, Create, Drop, References, Index, Alter, Create Temporary Tables, Lock Tables on Rivendell.* to rduser@'%' identified by 'hackme';
|
|
FLUSH PRIVILEGES;
|
|
SET @@global.sql_mode= 'NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION';
|