Misc DB updates/Fixes

Port From (https://github.com/TrinityCore/TrinityCore)
This commit is contained in:
hondacrx
2020-07-24 18:23:30 -04:00
parent a2f189cd1d
commit 611162ed95
33 changed files with 1057 additions and 20 deletions
@@ -0,0 +1,12 @@
--
DELETE FROM `rbac_permissions` WHERE `id` BETWEEN 856 AND 860;
INSERT INTO `rbac_permissions` (`id`,`name`) VALUES
(856, 'Command: npc spawngroup'),
(857, 'Command: npc despawngroup'),
(858, 'Command: gobject spawngroup'),
(859, 'Command: gobject despawngroup'),
(860, 'Command: list respawns');
DELETE FROM `rbac_linked_permissions` WHERE `linkedId` BETWEEN 856 AND 860;
INSERT INTO `rbac_linked_permissions` (`id`,`linkedId`) VALUES
(197,856),(197,857),(197,858),(197,859),(197,860);
@@ -0,0 +1,2 @@
--
UPDATE `rbac_permissions` SET `name`="Command: debug worldstate" WHERE `id`=339;