mirror of
https://github.com/mangosfour/server.git
synced 2025-12-25 04:37:02 +00:00
[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:
parent
2f0f10a764
commit
b60bc4a34b
23 changed files with 12577 additions and 8 deletions
9
sql/updates/12112_01_characters_character_phase_data.sql
Normal file
9
sql/updates/12112_01_characters_character_phase_data.sql
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue