aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/6.x/2016_09_03_01_auth.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/auth/6.x/2016_09_03_01_auth.sql b/sql/updates/auth/6.x/2016_09_03_01_auth.sql
new file mode 100644
index 00000000000..5092f093bfb
--- /dev/null
+++ b/sql/updates/auth/6.x/2016_09_03_01_auth.sql
@@ -0,0 +1,11 @@
+DELETE FROM `rbac_permissions` WHERE `id` IN (841,842,843);
+INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
+(841, 'Command: reload character_template'),
+(842, 'Command: reload quest_greeting'),
+(843, 'Command: debug send playscene');
+
+DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (841,842,843);
+INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
+(196, 841),
+(196, 842),
+(192, 843);