database creation (mysql script)

This commit is contained in:
Sam
2017-08-26 22:12:39 +02:00
parent 534f34bc91
commit c610217f02
+3
View File
@@ -0,0 +1,3 @@
CREATE USER 'mpwo'@'localhost' IDENTIFIED BY 'mpwo';
GRANT ALL PRIVILEGES ON `mpwo` . * TO 'mpwo'@'localhost';
FLUSH PRIVILEGES;