[12112] MaNGOS switch Support to Patch 4.3.4 Build 15595

NOTE:
 *Still under Developement
 *Need new Config Files
 *Reextract "dbcs, maps, vmaps, mmaps"

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-26 15:18:08 +02:00 committed by Antz
parent 2f0f10a764
commit b60bc4a34b
23 changed files with 12577 additions and 8 deletions

View file

@ -0,0 +1,9 @@
ALTER TABLE character_db_version CHANGE COLUMN required_11785_02_characters_instance required_12112_01_characters_character_phase_data bit;
DROP TABLE IF EXISTS `character_phase_data`;
CREATE TABLE `character_phase_data` (
`guid` int(11) NOT NULL,
`map` smallint(6) NOT NULL,
`phase` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;