Skip to content

Commit

Permalink
docs: Add missing grants in MYSQL manual setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed Sep 19, 2023
1 parent b5dfbff commit 1db8173
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/02-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can use the following sample command for creating the MySQL/MariaDB database

```
CREATE DATABASE reporting;
GRANT SELECT, INSERT, UPDATE, DELETE, DROP, CREATE, CREATE VIEW, INDEX, EXECUTE ON reporting.* TO reporting@localhost IDENTIFIED BY 'secret';
GRANT CREATE, SELECT, INSERT, UPDATE, DELETE, DROP, ALTER, CREATE VIEW, INDEX, EXECUTE ON reporting.* TO reporting@localhost IDENTIFIED BY 'secret';
```

After, you can import the schema using the following command:
Expand Down

0 comments on commit 1db8173

Please sign in to comment.