add few dbs

This commit is contained in:
2021-08-18 03:56:12 -05:00
parent 1d808a59b2
commit 141bd42fb4
4 changed files with 163 additions and 12 deletions

View File

@@ -15,13 +15,15 @@ CREATE TABLE events
CREATE
USER
'demo_user'@'localhost'
'demo_user'@'%'
IDENTIFIED BY
'password';
'demo_pass';
GRANT
ALL
ALL privileges
ON
demo.*
TO
'demo_user'@'localhost';
'demo_user'@'%';
FLUSH PRIVILEGES;