feature: add mysql script to GRANT and REVOKE privileges

This commit is contained in:
Claudio Maradonna 2021-07-31 01:52:35 +02:00
parent d15002c606
commit f3b6708594
Signed by untrusted user: claudiomaradonna
GPG Key ID: B1EDCB4C3B05C387
1 changed files with 3 additions and 0 deletions

View File

@ -0,0 +1,3 @@
SHOW GRANTS FOR 'role';
REVOKE ALL ON *.* FROM 'role'@'%';
GRANT ALL ON ex_database.* TO 'role'@'%' WITH GRANT OPTION;