Update README

This commit is contained in:
Dryusdan 2023-10-03 12:27:02 +02:00
parent 6dcb64f6b2
commit 7d4307a154
Signed by: Dryusdan
GPG Key ID: EC1438DDE24E27D7
1 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,17 @@ In `extras` folder, you will find the routine, trigger and event of your databas
In `schemas` folder, you will find each table structure per file.
In `datas` folder, you will find each table data per file.
You need to configure a user with somes permissions like this :
For all tables :
```
*.*:SELECT,SHOW VIEW,RELOAD,REPLICATION CLIENT,EVENT,TRIGGER,LOCK TABLES
```
For `sys` table (MariaDB 10.11 on Debian 12) :
```
sys.*:LOCK TABLES,SHOW VIEW,EXECUTE
```
## How use it ?
Create a backup user with these grants : `SELECT, RELOAD, LOCK TABLES, REPLICATION CLIENT, SHOW VIEW, EVENT, TRIGGER`