diff options
author | Louis-Philippe VĂ©ronneau <pollito@riseup.net> | 2018-02-13 12:18:48 -0500 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2018-02-13 10:16:05 -0800 |
commit | 2c4a3cb7e0b767c3a7ef8887e18541044ae1cff2 (patch) | |
tree | 11c2a4f13893e0a2058965882c846d584983e11b | |
parent | 32506974f7cb4f144b88df40763b2ea548e7a501 (diff) |
add required SQL permissions to database installation procedure
-rw-r--r-- | doc/en_US/mysql-configuration.markdown | 6 |
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: |