mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
DB/Misc: Fix travis database
This commit is contained in:
@@ -1065,6 +1065,21 @@ CREATE TABLE `gameobject` (
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=255094 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `gameobject_addon`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `gameobject_addon`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `gameobject_addon` (
|
||||
`guid` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||
`invisibilityType` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`invisibilityValue` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `gameobject_loot_template`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user