mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +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
389 B
SQL
12 lines
389 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_11115_01_mangos_command required_11117_01_mangos_world_template bit;
|
|
|
|
--
|
|
-- Table structure for table `world_template`
|
|
--
|
|
|
|
DROP TABLE IF EXISTS `world_template`;
|
|
CREATE TABLE `world_template` (
|
|
`map` smallint(5) unsigned NOT NULL,
|
|
`ScriptName` varchar(128) NOT NULL default '',
|
|
PRIMARY KEY (`map`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|