aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2020-12-31 13:01:33 +0100
committerjackpoz <giacomopoz@gmail.com>2021-01-03 22:51:53 +0100
commit8d450f3f07926c3a4869804ade34c74fc506b7b0 (patch)
tree295dc9a9ab1153e904da1749fd5adeb75274b5d3 /sql/updates/auth
parent6392d9ac481dd015133d6b69a6642437a503d94a (diff)
Core/Commands: Add .reload vehicle_template
(cherry picked from commit 4ca15ec065289e12ce95962b3afd89445e141a97) # Conflicts: # sql/base/auth_database.sql # src/server/game/Accounts/RBAC.h
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/3.3.5/2020_12_31_00_auth.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/auth/3.3.5/2020_12_31_00_auth.sql b/sql/updates/auth/3.3.5/2020_12_31_00_auth.sql
new file mode 100644
index 00000000000..44d29e41def
--- /dev/null
+++ b/sql/updates/auth/3.3.5/2020_12_31_00_auth.sql
@@ -0,0 +1,7 @@
+DELETE FROM `rbac_permissions` WHERE `id`=881;
+INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
+(881, 'Command: reload vehicle_template');
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId`=881;
+INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES
+(196,881);