DB/RBAC: fixed some permissions after a92bfb5505

This commit is contained in:
joschiwald
2016-09-03 15:31:32 +02:00
parent a92bfb5505
commit ad52ee8e25
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 (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);

View File

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