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:
parent
30621e6237
commit
fc05c82f65
263 changed files with 1290918 additions and 8194 deletions
67
data/sql/base/characters/pool_quest_save.sql
Normal file
67
data/sql/base/characters/pool_quest_save.sql
Normal file
|
|
@ -0,0 +1,67 @@
|
|||
/*!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 `pool_quest_save`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `pool_quest_save`
|
||||
(
|
||||
`pool_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`quest_id` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`pool_id`,`quest_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `pool_quest_save` WRITE;
|
||||
/*!40000 ALTER TABLE `pool_quest_save` DISABLE KEYS */;
|
||||
INSERT INTO `pool_quest_save` VALUES
|
||||
(348,24636),
|
||||
(349,14102),
|
||||
(350,13905),
|
||||
(351,13914),
|
||||
(352,11381),
|
||||
(353,11665),
|
||||
(354,13422),
|
||||
(356,11373),
|
||||
(357,11500),
|
||||
(358,14077),
|
||||
(359,14112),
|
||||
(360,14143),
|
||||
(361,14141),
|
||||
(362,12703),
|
||||
(363,14108),
|
||||
(380,12726),
|
||||
(381,12741),
|
||||
(382,12761),
|
||||
(384,13191),
|
||||
(385,13153),
|
||||
(386,12501),
|
||||
(5662,13675),
|
||||
(5663,13763),
|
||||
(5664,13770),
|
||||
(5665,13773),
|
||||
(5666,13779),
|
||||
(5667,13784),
|
||||
(5668,13670),
|
||||
(5669,13616),
|
||||
(5670,13742),
|
||||
(5671,13748),
|
||||
(5672,13757),
|
||||
(5673,13754),
|
||||
(5674,13101),
|
||||
(5675,13115),
|
||||
(5676,13836),
|
||||
(5677,12963),
|
||||
(5678,24586);
|
||||
/*!40000 ALTER TABLE `pool_quest_save` 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 */;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue