diff options
| author | Treeston <treeston.mmoc@gmail.com> | 2019-07-17 15:59:52 +0200 |
|---|---|---|
| committer | Treeston <treeston.mmoc@gmail.com> | 2019-07-17 15:59:52 +0200 |
| commit | a82bbeb101d64b89d9918ff5cbe4866591f1101b (patch) | |
| tree | bd54628c42bab482ad7f4954d2aebb2c9045ec0a /sql/updates/auth | |
| parent | 9d2af284a5db759e421e19ab1dbc49858f1a321e (diff) | |
Core/DB: Add RBAC for .debug poolstatus, because I need it for the pooling branch.
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/3.3.5/2019_07_17_00_auth.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2019_07_17_00_auth.sql b/sql/updates/auth/3.3.5/2019_07_17_00_auth.sql new file mode 100644 index 00000000000..afcd8c6e57e --- /dev/null +++ b/sql/updates/auth/3.3.5/2019_07_17_00_auth.sql @@ -0,0 +1,6 @@ +-- +DELETE FROM `rbac_permissions` WHERE `id`=879; +INSERT INTO `rbac_permissions` (`id`,`name`) VALUES (879, 'Command: debug poolstatus'); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=879; +INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES (196,879); |
