update draft post

main
Dominic Reich 3 months ago
parent 769a0a37f8
commit 9d76360f2e
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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…
Cancel
Save