DB/RBAC: fixed some permissions after 779d3b2368

This commit is contained in:
joschiwald
2016-09-03 18:12:40 +02:00
parent 779d3b2368
commit 994d813699
3 changed files with 18 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
DELETE FROM `rbac_permissions` WHERE `id` IN (842,843,844);
INSERT INTO `rbac_permissions` (`id`, `name`) VALUES
(842, 'Command: reload character_template'),
(843, 'Command: reload quest_greeting'),
(844, 'Command: debug send playscene');
DELETE FROM `rbac_linked_permissions` WHERE `linkedId` IN (841,842,843);
INSERT INTO `rbac_linked_permissions` (`id`, `linkedId`) VALUES
(196, 842),
(196, 843),
(192, 844);

View File

@@ -0,0 +1,3 @@
UPDATE `command` SET `permission`=842 WHERE `name`='reload character_template';
UPDATE `command` SET `permission`=843 WHERE `name`='reload quest_greeting';
UPDATE `command` SET `permission`=844 WHERE `name`='debug send playscene';