mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
* New table added for non-instanced maps (except BG/arena):
- `mangos`.`world_template` (script mapping to non instanced data)
- `characters`.`world` (saved script data string storage)
* InstancedData created for any map types including BGs/arenas, that allow have scripts
state for any maps, but BG/arena instance data not saved.
Note: Possible structures will renamed later for clarify apply to any type maps,
but avoid for now for simplify changes and hard affect to script library sources.
12 lines
359 B
SQL
12 lines
359 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_10973_01_characters_game_event_status required_11117_02_characters_world bit;
|
|
|
|
--
|
|
-- Table structure for table `world`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `world`;
|
|
CREATE TABLE `world` (
|
|
`map` int(11) unsigned NOT NULL default '0',
|
|
`data` longtext,
|
|
PRIMARY KEY (`map`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|