DB/Misc: Fix travis database

This commit is contained in:
Aokromes
2015-08-11 13:15:04 +02:00
parent 5ceb04ed47
commit fd49e2109b

View File

@@ -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`
--