[Docs] Fix typo in database sample request (#7492)

This commit is contained in:
Yahya 2019-09-19 15:14:34 +07:00 committed by Michel Vocks
parent 3621179560
commit 936af3650c
1 changed files with 1 additions and 1 deletions

View File

@ -300,7 +300,7 @@ $ curl \
```json
{
"data": {
"creation_statements": ["CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}';"], "GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";"],
"creation_statements": ["CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}';", "GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";"],
"db_name": "mysql",
"default_ttl": 3600,
"max_ttl": 86400,