aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authorr4dish <ovitnez@gmail.com>2024-01-06 11:37:31 +0200
committerShauren <shauren.trinity@gmail.com>2024-01-06 23:43:59 +0100
commit554fc8eee0bcbb70acd012c04f6f02197c6d949c (patch)
tree5af32464e93342db01f33de19eaab48d87064ddf /sql/updates/auth
parent1dc9b83a2556741ffd0c6ddce447a3e04f51a2b2 (diff)
Core/Misc: Add permission that allows player to be AFK on the battleground.
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/3.3.5/2024_01_06_01_auth.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql b/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql
new file mode 100644
index 00000000000..f09d9139e4a
--- /dev/null
+++ b/sql/updates/auth/3.3.5/2024_01_06_01_auth.sql
@@ -0,0 +1,7 @@
+--
+DELETE FROM `rbac_permissions` WHERE `id` = 53;
+INSERT INTO `rbac_permissions` (`id`, `name`) VALUES (53, "Can be AFK on the battleground");
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId` = 53;
+INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
+(193, 53);