7 lines
178 B
MySQL
7 lines
178 B
MySQL
|
DROP DATABASE IF EXISTS lostfound;
|
||
|
CREATE DATABASE lostfound;
|
||
|
|
||
|
CREATE OR REPLACE USER lostfound IDENTIFIED BY 'lostfound';
|
||
|
|
||
|
GRANT ALL privileges ON `lostfound`.* TO 'lostfound';
|