From 550d99cab5d7487b8e8ab688fb7cf2307eddd7be Mon Sep 17 00:00:00 2001 From: Andras Iklody Date: Mon, 22 Jun 2020 15:03:50 +0200 Subject: [PATCH] Update INSTALL.md --- INSTALL/INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL/INSTALL.md b/INSTALL/INSTALL.md index 1f663a9..b897364 100644 --- a/INSTALL/INSTALL.md +++ b/INSTALL/INSTALL.md @@ -19,10 +19,10 @@ Create a database for cerebrate ``` mysql CREATE DATABASE cerebrate; -CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD' +CREATE USER 'cerebrate'@'localhost' IDENTIFIED BY 'YOUR_PASSWORD'; GRANT USAGE ON *.* to cerebrate@localhost; GRANT ALL PRIVILEGES ON cerebrate.* to cerebrate@localhost; -FLUSH ALL PRIVILEGES; +FLUSH PRIVILEGES; ``` Load the default table structure into the database