add required SQL permissions to database installation procedure
This commit is contained in:
parent
32506974f7
commit
2c4a3cb7e0
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue