base db is now splitted in multiple sql

you can use db_assembler crossplatform tool from our repository

to assemble it in a single sql file
This commit is contained in:
Yehonal
2016-08-14 06:49:03 +02:00
parent 30621e6237
commit fc05c82f65
263 changed files with 1290918 additions and 8194 deletions

View File

@@ -0,0 +1,102 @@
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `instance_reset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `instance_reset`
(
`mapid` smallint(5) unsigned NOT NULL DEFAULT '0',
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`resettime` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`mapid`,`difficulty`),
KEY `difficulty` (`difficulty`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `instance_reset` WRITE;
/*!40000 ALTER TABLE `instance_reset` DISABLE KEYS */;
INSERT INTO `instance_reset` VALUES
(249,0,1471060800),
(249,1,1471060800),
(269,1,1470974400),
(309,0,1470974400),
(409,0,1471060800),
(469,0,1471060800),
(509,0,1470974400),
(531,0,1471060800),
(532,0,1471060800),
(533,0,1471060800),
(533,1,1471060800),
(534,0,1471060800),
(540,1,1470974400),
(542,1,1470974400),
(543,1,1470974400),
(544,0,1471060800),
(545,1,1470974400),
(546,1,1470974400),
(547,1,1470974400),
(548,0,1471060800),
(550,0,1471060800),
(552,1,1470974400),
(553,1,1470974400),
(554,1,1470974400),
(555,1,1470974400),
(556,1,1470974400),
(557,1,1470974400),
(558,1,1470974400),
(560,1,1470974400),
(564,0,1471060800),
(565,0,1471060800),
(568,0,1470974400),
(574,1,1470974400),
(575,1,1470974400),
(576,1,1470974400),
(578,1,1470974400),
(580,0,1471060800),
(585,1,1470974400),
(595,1,1470974400),
(598,1,1470974400),
(599,1,1470974400),
(600,1,1470974400),
(601,1,1470974400),
(602,1,1470974400),
(603,0,1471060800),
(603,1,1471060800),
(604,1,1470974400),
(608,1,1470974400),
(615,0,1471060800),
(615,1,1471060800),
(616,0,1471060800),
(616,1,1471060800),
(619,1,1470974400),
(624,0,1471060800),
(624,1,1471060800),
(631,0,1471060800),
(631,1,1471060800),
(631,2,1471060800),
(631,3,1471060800),
(632,1,1470974400),
(649,0,1471060800),
(649,1,1471060800),
(649,2,1471060800),
(649,3,1471060800),
(650,1,1470974400),
(658,1,1470974400),
(668,1,1470974400),
(724,0,1471060800),
(724,1,1471060800),
(724,2,1471060800),
(724,3,1471060800);
/*!40000 ALTER TABLE `instance_reset` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;