feature: add mysql script to GRANT and REVOKE privileges

This commit is contained in:
2021-07-31 01:52:35 +02:00
parent d15002c606
commit f3b6708594

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;