mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 08:55:32 +01:00
DB/Misc: TDB 4.3.4-11 2016/08/28
This commit is contained in:
@@ -317,6 +317,9 @@ CREATE TABLE `creature_addon` (
|
||||
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`bytes2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`emote` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`aiAnimKit` smallint(6) NOT NULL DEFAULT '0',
|
||||
`movementAnimKit` smallint(6) NOT NULL DEFAULT '0',
|
||||
`meleeAnimKit` smallint(6) NOT NULL DEFAULT '0',
|
||||
`auras` text,
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
@@ -1001,16 +1004,16 @@ CREATE TABLE `game_event_seasonal_questrelation` (
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `game_graveyard_zone`
|
||||
-- Table structure for table `graveyard_zone`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `game_graveyard_zone`;
|
||||
DROP TABLE IF EXISTS `graveyard_zone`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `game_graveyard_zone` (
|
||||
`id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ghost_zone` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`faction` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
CREATE TABLE `graveyard_zone` (
|
||||
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`GhostZone` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Faction` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`id`,`ghost_zone`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
@@ -1102,6 +1105,10 @@ DROP TABLE IF EXISTS `gameobject_addon`;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `gameobject_addon` (
|
||||
`guid` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`parent_rotation0` float NOT NULL DEFAULT '0',
|
||||
`parent_rotation1` float NOT NULL DEFAULT '0',
|
||||
`parent_rotation2` float NOT NULL DEFAULT '0',
|
||||
`parent_rotation3` float NOT NULL DEFAULT '1',
|
||||
`invisibilityType` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`invisibilityValue` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
@@ -1259,6 +1266,7 @@ DROP TABLE IF EXISTS `gossip_menu`;
|
||||
CREATE TABLE `gossip_menu` (
|
||||
`entry` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`text_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(5) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`entry`,`text_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
@@ -1284,6 +1292,7 @@ CREATE TABLE `gossip_menu_option` (
|
||||
`box_money` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`box_text` text,
|
||||
`BoxBroadcastTextID` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` smallint(5) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`menu_id`,`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
@@ -3654,21 +3663,21 @@ DROP TABLE IF EXISTS `spell_proc`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `spell_proc` (
|
||||
`spellId` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`schoolMask` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`spellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`typeMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellTypeMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellPhaseMask` int(11) NOT NULL DEFAULT '0',
|
||||
`hitMask` int(11) NOT NULL DEFAULT '0',
|
||||
`attributesMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ratePerMinute` float NOT NULL DEFAULT '0',
|
||||
`chance` float NOT NULL DEFAULT '0',
|
||||
`cooldown` float unsigned NOT NULL DEFAULT '0',
|
||||
`charges` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellId` int(11) NOT NULL DEFAULT '0',
|
||||
`SchoolMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ProcFlags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellTypeMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`SpellPhaseMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`HitMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`AttributesMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ProcsPerMinute` float NOT NULL DEFAULT '0',
|
||||
`Chance` float NOT NULL DEFAULT '0',
|
||||
`Cooldown` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`Charges` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`spellId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
Reference in New Issue
Block a user