diff options
| author | Subv <subv2112@gmail.com> | 2014-06-02 15:53:54 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2014-06-02 15:53:54 -0500 |
| commit | 3df25bb64cadab2c6b6556c7b2ab66db93326ce7 (patch) | |
| tree | ccc061485a9b8c46f16fd8e1e83a876b6c0b582f /sql | |
| parent | 226f1dedb45907edd0e90fdef5f469edf55e8e03 (diff) | |
Core/Phases: Added missing sql and changed how phase_definitions will work, implementation still missing
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2014_06_02_00_world_phases_434.sql | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sql/updates/world/2014_06_02_00_world_phases_434.sql b/sql/updates/world/2014_06_02_00_world_phases_434.sql new file mode 100644 index 00000000000..e36d4f50deb --- /dev/null +++ b/sql/updates/world/2014_06_02_00_world_phases_434.sql @@ -0,0 +1,27 @@ +DROP TABLE IF EXISTS `spell_phase`; +DROP TABLE IF EXISTS `phase_definitions`; + +/*Table structure for table `phase_definitions` */ + +DROP TABLE IF EXISTS `phase_definitions`; + +CREATE TABLE `phase_definitions` ( + `zoneId` int(10) unsigned NOT NULL DEFAULT '0', + `entry` int(10) unsigned NOT NULL AUTO_INCREMENT, + `phaseId` int(10) unsigned NOT NULL DEFAULT '0', + `phaseGroup` int(10) NOT NULL DEFAULT '0', + `comment` text, + PRIMARY KEY (`zoneId`,`entry`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +/*Table structure for table `phase_info` */ + +DROP TABLE IF EXISTS `phase_info`; + +CREATE TABLE `phase_info` ( + `id` int(10) unsigned NOT NULL DEFAULT '0', + `worldmapareaswap` int(10) unsigned NOT NULL DEFAULT '0', + `terrainswapmap` int(10) unsigned NOT NULL DEFAULT '0', + `comment` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8;
\ No newline at end of file |
