DB/Misc: Travis fix

This commit is contained in:
Aokromes
2015-11-02 15:57:15 +01:00
parent 9a6e470bf8
commit bf3edbc9dc

View File

@@ -2496,6 +2496,21 @@ CREATE TABLE `pet_name_generation` (
) ENGINE=MyISAM AUTO_INCREMENT=314 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `phase_area`
--
DROP TABLE IF EXISTS `phase_area`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `phase_area` (
`AreaId` int(10) unsigned NOT NULL,
`PhaseId` int(10) unsigned NOT NULL,
`Comment` varchar(255) DEFAULT NULL,
PRIMARY KEY (`AreaId`,`PhaseId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `phase_definitions`
--