mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
[0028] Implented new phase/map/terrain swap system for cata.
This commit is contained in:
parent
3561a43fe1
commit
3b8fb556a7
20 changed files with 288 additions and 16 deletions
|
|
@ -21,7 +21,7 @@
|
|||
|
||||
DROP TABLE IF EXISTS `character_db_version`;
|
||||
CREATE TABLE `character_db_version` (
|
||||
`required_0001_xxxxx_01_characters` bit(1) default NULL
|
||||
`required_0028_01_characters_character_phase_data` bit(1) default NULL
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';
|
||||
|
||||
--
|
||||
|
|
@ -670,6 +670,27 @@ LOCK TABLES `character_pet_declinedname` WRITE;
|
|||
/*!40000 ALTER TABLE `character_pet_declinedname` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_phase_data`
|
||||
--
|
||||
|
||||
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,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
|
||||
|
||||
--
|
||||
-- Dumping data for table `character_phase_data`
|
||||
--
|
||||
|
||||
LOCK TABLES `character_phase_data` WRITE;
|
||||
/*!40000 ALTER TABLE `character_phase_data` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `character_phase_data` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `character_queststatus`
|
||||
--
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue