mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-18 11:25:42 +00:00
16
data/sql/updates/db_world/2023_04_27_01.sql
Normal file
16
data/sql/updates/db_world/2023_04_27_01.sql
Normal file
@@ -0,0 +1,16 @@
|
||||
-- DB update 2023_04_27_00 -> 2023_04_27_01
|
||||
-- add item_dbc table
|
||||
DROP TABLE IF EXISTS `item_dbc`;
|
||||
CREATE TABLE `item_dbc` ( `ID` INT NOT NULL DEFAULT '0', `ClassID` INT NOT NULL DEFAULT '0', `SubclassID` INT NOT NULL DEFAULT '0', `Sound_Override_Subclassid` INT NOT NULL DEFAULT '0', `Material` INT NOT NULL DEFAULT '0', `DisplayInfoID` INT NOT NULL DEFAULT '0', `InventoryType` INT NOT NULL DEFAULT '0', `SheatheType` INT NOT NULL DEFAULT '0', PRIMARY KEY (`ID`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
-- Corrects subclass error messages
|
||||
UPDATE `item_template` SET `subclass`=4 WHERE `entry`=17;
|
||||
UPDATE `item_template` SET `subclass`=6 WHERE `entry`=2556;
|
||||
UPDATE `item_template` SET `subclass`=0 WHERE `entry`=20221;
|
||||
UPDATE `item_template` SET `subclass`=13 WHERE `entry`=31802;
|
||||
UPDATE `item_template` SET `subclass`=3 WHERE `entry`=33080;
|
||||
UPDATE `item_template` SET `subclass`=3 WHERE `entry`=33604;
|
||||
UPDATE `item_template` SET `subclass`=8 WHERE `entry`=37445;
|
||||
UPDATE `item_template` SET `subclass`=12 WHERE `entry`=37677;
|
||||
UPDATE `item_template` SET `subclass`=7 WHERE `entry`=41749;
|
||||
UPDATE `item_template` SET `subclass`=1 WHERE `entry`=53048;
|
||||
Reference in New Issue
Block a user