From fd49e2109be9a20bb8d8814449d7739d8df0876a Mon Sep 17 00:00:00 2001 From: Aokromes Date: Tue, 11 Aug 2015 13:15:04 +0200 Subject: [PATCH] DB/Misc: Fix travis database --- sql/base/dev/world_database.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql index fdec37d56b1..2a662a13194 100644 --- a/sql/base/dev/world_database.sql +++ b/sql/base/dev/world_database.sql @@ -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` --