From 26c97451794645f7468b11a309d3f26034fb5529 Mon Sep 17 00:00:00 2001 From: kinseyost Date: Thu, 15 Sep 2016 21:29:51 -0700 Subject: [PATCH] Adds CREATE USER to user creation step. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 9629542..0b41707 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,10 @@ CREATE simple_cms_development; ``` 3. Create a new user and password so you don't have to use *root* for everything. ``` +CREATE USER 'whateverUsernameYouDesire'@'localhost'; +``` +Give permissions to user. +``` GRANT ALL PRIVILEGES ON simple_cms_development.* TO 'whateverUsernameYouDesire'@'localhost' IDENTIFIED BY 'whateverPasswordYouDesire';