DB Updates
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- TDB 1105.24111 hotfixes
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/hotfixes', 'ARCHIVED');
|
||||
@@ -0,0 +1,13 @@
|
||||
--
|
||||
-- Table structure for table `mount_equipment`
|
||||
--
|
||||
DROP TABLE IF EXISTS `mount_equipment`;
|
||||
CREATE TABLE `mount_equipment` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`Item` int NOT NULL DEFAULT '0',
|
||||
`BuffSpell` int NOT NULL DEFAULT '0',
|
||||
`Unknown820` int NOT NULL DEFAULT '0',
|
||||
`LearnedBySpell` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
@@ -0,0 +1,23 @@
|
||||
--
|
||||
-- Table structure for table `creature_label`
|
||||
--
|
||||
DROP TABLE IF EXISTS `creature_label`;
|
||||
CREATE TABLE `creature_label` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`LabelID` int NOT NULL DEFAULT '0',
|
||||
`CreatureDifficultyID` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
--
|
||||
-- Table structure for table `gameobject_label`
|
||||
--
|
||||
DROP TABLE IF EXISTS `gameobject_label`;
|
||||
CREATE TABLE `gameobject_label` (
|
||||
`ID` int unsigned NOT NULL DEFAULT '0',
|
||||
`LabelID` int NOT NULL DEFAULT '0',
|
||||
`GameObjectID` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
@@ -0,0 +1,16 @@
|
||||
ALTER TABLE `broadcast_text` MODIFY `Flags` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `EmotesID`;
|
||||
|
||||
ALTER TABLE `lfg_dungeons`
|
||||
ADD `MaxPremadeCountTank` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `MinCountDamage`,
|
||||
ADD `MaxPremadeCountHealer` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `MaxPremadeCountTank`,
|
||||
ADD `MaxPremadeCountDamage` tinyint UNSIGNED NOT NULL DEFAULT 0 AFTER `MaxPremadeCountHealer`;
|
||||
|
||||
ALTER TABLE `map_difficulty` MODIFY `ID` int UNSIGNED NOT NULL DEFAULT 0 AFTER `Message`;
|
||||
|
||||
ALTER TABLE `player_condition`
|
||||
ADD `MinLevel` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `FailureDescription`,
|
||||
ADD `MaxLevel` smallint UNSIGNED NOT NULL DEFAULT 0 AFTER `MinLevel`;
|
||||
|
||||
ALTER TABLE `vignette`
|
||||
ADD `UiMapPinInfoID` int NOT NULL DEFAULT 0 AFTER `UiWidgetSetID`,
|
||||
ADD `ObjectiveType` tinyint NOT NULL DEFAULT 0 AFTER `UiMapPinInfoID`;
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user