mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/DataStores: Updated hotfix database structure
* Updated handling for removed db2s
This commit is contained in:
1730
sql/updates/hotfixes/master/2018_09_25_00_hotfixes.sql
Normal file
1730
sql/updates/hotfixes/master/2018_09_25_00_hotfixes.sql
Normal file
File diff suppressed because it is too large
Load Diff
13
sql/updates/world/master/2018_09_25_00_world.sql
Normal file
13
sql/updates/world/master/2018_09_25_00_world.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
ALTER TABLE `terrain_worldmap`
|
||||
DROP PRIMARY KEY,
|
||||
ADD `UiMapPhaseId` int(10) unsigned NOT NULL AFTER `TerrainSwapMap`;
|
||||
|
||||
DELETE FROM `terrain_worldmap` WHERE `TerrainSwapMap`=638;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=52 WHERE `TerrainSwapMap`=655;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=54 WHERE `TerrainSwapMap`=656;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=165 WHERE `TerrainSwapMap`=719;
|
||||
UPDATE `terrain_worldmap` SET `UiMapPhaseId`=2801 WHERE `TerrainSwapMap`=545;
|
||||
|
||||
ALTER TABLE `terrain_worldmap`
|
||||
ADD PRIMARY KEY(`TerrainSwapMap`,`UiMapPhaseId`),
|
||||
DROP `WorldMapArea`;
|
||||
Reference in New Issue
Block a user