forked from mystiq/dex
fix mysql sample query
This commit is contained in:
parent
0aee5be625
commit
c067761df6
1 changed files with 2 additions and 2 deletions
|
@ -307,8 +307,8 @@ Dex requires MySQL 5.7 or later version. When using MySQL, admins may want to de
|
|||
|
||||
```
|
||||
CREATE DATABASE dex_db;
|
||||
CREATE USER dex WITH PASSWORD '66964843358242dbaaa7778d8477c288';
|
||||
GRANT ALL PRIVILEGES ON DATABASE dex_db TO dex;
|
||||
CREATE USER dex IDENTIFIED BY '66964843358242dbaaa7778d8477c288';
|
||||
GRANT ALL PRIVILEGES ON dex_db.* TO dex;
|
||||
```
|
||||
|
||||
An example config for MySQL setup using these values:
|
||||
|
|
Loading…
Reference in a new issue