This commit is contained in:
aozhiwei 2021-11-25 19:57:49 +08:00
parent 06f0355d9b
commit fdab5c07b6
2 changed files with 14 additions and 1193 deletions

View File

@ -17,6 +17,7 @@ CREATE TABLE `version` (
PRIMARY KEY (`idx`),
UNIQUE KEY `version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_user`
@ -43,6 +44,7 @@ CREATE TABLE `t_user` (
PRIMARY KEY (`idx`),
UNIQUE KEY `accountid` (`accountid`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_hero`
@ -67,6 +69,7 @@ CREATE TABLE `t_hero` (
PRIMARY KEY (`idx`),
UNIQUE KEY `accountid_hero_id` (`accountid`, `hero_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_hero_skin`
@ -88,6 +91,7 @@ CREATE TABLE `t_hero_skin` (
PRIMARY KEY (`idx`),
UNIQUE KEY `accountid_skinid` (`accountid`, `skin_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_bag`
@ -109,6 +113,11 @@ CREATE TABLE `t_bag` (
UNIQUE KEY `item_uuid` (`accountid`, `item_id`),
KEY `accountid` (`accountid`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_gun_skin`
--
DROP TABLE IF EXISTS `t_gun_skin`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
@ -124,6 +133,10 @@ CREATE TABLE `t_gun_skin` (
UNIQUE KEY `accountid_skin_id` (`accountid`, `skin_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
--
-- Table structure for table `t_gun_talent`
--
DROP TABLE IF EXISTS `t_gun_talent`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
@ -138,5 +151,6 @@ CREATE TABLE `t_gun_talent` (
PRIMARY KEY (`idx`),
UNIQUE KEY `accountid_type_id_skill_id` (`accountid`, `type_id`,`skill_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
-- Dump completed on 2015-08-19 18:51:22

File diff suppressed because it is too large Load Diff