Skip to content

Commit

Permalink
Merge pull request dexidp#1498 from mkontani/fix/mysql-query-sample
Browse files Browse the repository at this point in the history
Doc/storage.md: fix mysql sample query
  • Loading branch information
bonifaido authored Jul 29, 2019
2 parents ed4a8b6 + e0c42bd commit aafc5c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit aafc5c5

Please sign in to comment.