mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/PacketIO: Updated packet structures to 9.2.5
This commit is contained in:
12
sql/updates/characters/master/2022_06_01_00_characters.sql
Normal file
12
sql/updates/characters/master/2022_06_01_00_characters.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
ALTER TABLE `gm_complaint`
|
||||
ADD `reportType` int NOT NULL DEFAULT '0' AFTER `complaintType`,
|
||||
ADD `reportMajorCategory` int NOT NULL DEFAULT '0' AFTER `reportType`,
|
||||
ADD `reportMinorCategoryFlags` int NOT NULL DEFAULT '0' AFTER `reportMajorCategory`;
|
||||
|
||||
UPDATE `gm_complaint` SET `reportType`=0,`reportMajorCategory`=0,`reportMinorCategoryFlags`=0x1 WHERE `complaintType`=2;
|
||||
UPDATE `gm_complaint` SET `reportType`=1,`reportMajorCategory`=3,`reportMinorCategoryFlags`=0x800 WHERE `complaintType`=4;
|
||||
UPDATE `gm_complaint` SET `reportType`=1,`reportMajorCategory`=2,`reportMinorCategoryFlags`=0x40 WHERE `complaintType`=15;
|
||||
UPDATE `gm_complaint` SET `reportType`=1,`reportMajorCategory`=3,`reportMinorCategoryFlags`=0x1000 WHERE `complaintType`=23;
|
||||
UPDATE `gm_complaint` SET `reportType`=0,`reportMajorCategory`=0,`reportMinorCategoryFlags`=0x4 WHERE `complaintType`=24;
|
||||
|
||||
ALTER TABLE `gm_complaint` DROP `complaintType`;
|
||||
Reference in New Issue
Block a user