update draft post
This commit is contained in:
parent
769a0a37f8
commit
9d76360f2e
1 changed files with 2 additions and 2 deletions
|
@ -44,9 +44,9 @@ draft: true
|
||||||
I'm going to use MySQL as the database type and I create a new user and database for it:
|
I'm going to use MySQL as the database type and I create a new user and database for it:
|
||||||
|
|
||||||
~~~mysql
|
~~~mysql
|
||||||
CREATE USER 'wlog'@'localhost' IDENTIFIED BY '${PASSWORD}';
|
|
||||||
CREATE DATABASE wavelog;
|
CREATE DATABASE wavelog;
|
||||||
GRANT ALL PRIVILEGES ON wavelog.* TO 'wlog'@'localhost';
|
CREATE USER 'wavelog'@'localhost' IDENTIFIED BY '${PASSWORD}';
|
||||||
|
GRANT ALL PRIVILEGES ON wavelog.* TO 'wavelog'@'localhost';
|
||||||
FLUSH PRIVILEGES;
|
FLUSH PRIVILEGES;
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue