update draft post

This commit is contained in:
Dominic Reich 2024-07-06 23:58:39 +02:00
parent 769a0a37f8
commit 9d76360f2e
Signed by: dominic
GPG key ID: BC9D6AE1A3BE169A

View file

@ -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:
~~~mysql
CREATE USER 'wlog'@'localhost' IDENTIFIED BY '${PASSWORD}';
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;
~~~