diff options
| author | Shauren <shauren.trinity@gmail.com> | 2022-12-22 16:36:55 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2022-12-22 16:36:55 +0100 |
| commit | 0eef877923f8bfb8d631fd92d57c80d96a0478af (patch) | |
| tree | 4a0064056cc69a6b8f8237b3c610aad7b802f580 /sql/updates/auth | |
| parent | 7dc25889c6f8785a8d8a98c990e2421ca9b2a0c7 (diff) | |
DB: Add missing rbac data for .modify currency
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/master/2022_12_22_00_auth.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2022_12_22_00_auth.sql b/sql/updates/auth/master/2022_12_22_00_auth.sql new file mode 100644 index 00000000000..3516d88b5c7 --- /dev/null +++ b/sql/updates/auth/master/2022_12_22_00_auth.sql @@ -0,0 +1,8 @@ +DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=775; +DELETE FROM `rbac_permissions` WHERE `id`=775; + +INSERT INTO `rbac_permissions` (`id`,`name`) VALUES +(775,'Command: modify currency'); + +INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES +(197,775); |
