summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/en_US/mysql-configuration.markdown6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/en_US/mysql-configuration.markdown b/doc/en_US/mysql-configuration.markdown
index 27d5141d..e2516e8c 100644
--- a/doc/en_US/mysql-configuration.markdown
+++ b/doc/en_US/mysql-configuration.markdown
@@ -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: