From c610217f027957b993e72cbd11f1c3dab144e902 Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 26 Aug 2017 22:12:39 +0200 Subject: [PATCH] database creation (mysql script) --- docs/db/mpwo_user.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 docs/db/mpwo_user.sql diff --git a/docs/db/mpwo_user.sql b/docs/db/mpwo_user.sql new file mode 100644 index 00000000..76d86b3b --- /dev/null +++ b/docs/db/mpwo_user.sql @@ -0,0 +1,3 @@ +CREATE USER 'mpwo'@'localhost' IDENTIFIED BY 'mpwo'; +GRANT ALL PRIVILEGES ON `mpwo` . * TO 'mpwo'@'localhost'; +FLUSH PRIVILEGES;