Unverified Commit 72f55966 authored by Nándor István Krácser's avatar Nándor István Krácser Committed by GitHub

Merge pull request #1498 from mkontani/fix/mysql-query-sample

Doc/storage.md: fix mysql sample query
parents 0aee5be6 c067761d
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment