add required SQL permissions to database installation procedure

This commit is contained in:
Louis-Philippe Véronneau 2018-02-13 12:18:48 -05:00 committed by fguillot
parent 32506974f7
commit 2c4a3cb7e0
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,12 @@ By example, you can do that with the command line mysql client:
CREATE DATABASE kanboard;
```
You can then assign the required permissions on the database:
```sql
GRANT ALTER, CREATE, DELETE, DROP, INDEX, INSERT, REFERENCES, SELECT, UPDATE ON kanboard.* TO 'USERNAME'@'HOST' IDENTIFIED BY 'PASSWORD';
```
### Create a config file
The file `config.php` should contains those values: