diff options
| author | r4dish <ovitnez@gmail.com> | 2024-01-06 10:10:55 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2024-01-06 23:43:59 +0100 |
| commit | 196dd226dfb0ffe80d4db8531d8d337fba3d2003 (patch) | |
| tree | 1262abc03b0419cb921cbc5d535f9d28ac858e5b /sql/updates/auth | |
| parent | 0c1e5fea69bb199209945340c381ba689fdae87b (diff) | |
Core/RBAC: Add permission that prevents getting a battleground deserter debuff.
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/3.3.5/2024_01_06_00_auth.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2024_01_06_00_auth.sql b/sql/updates/auth/3.3.5/2024_01_06_00_auth.sql new file mode 100644 index 00000000000..188513853c0 --- /dev/null +++ b/sql/updates/auth/3.3.5/2024_01_06_00_auth.sql @@ -0,0 +1,7 @@ +-- +DELETE FROM `rbac_permissions` WHERE `id` = 52; +INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (52, "No battleground deserter debuff"); + +DELETE FROM `rbac_linked_permissions` WHERE `linkedId` = 52; +INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES +(193, 52); |
