1
This commit is contained in:
parent
b0ad92e149
commit
77e63c0191
@ -1,43 +0,0 @@
|
|||||||
-- MySQL dump 10.14 Distrib 5.5.41-MariaDB, for Linux (x86_64)
|
|
||||||
--
|
|
||||||
-- Host: localhost Database: accountdb
|
|
||||||
-- ------------------------------------------------------
|
|
||||||
-- Server version 5.5.41-MariaDB
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `version`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `version`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `version` (
|
|
||||||
`idx` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
||||||
`version` int(11) NOT NULL DEFAULT '0' COMMENT '版本号',
|
|
||||||
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_game_log`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `t_game_log`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `t_game_log` (
|
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
|
||||||
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
|
|
||||||
`type` varchar(255) NOT NULL DEFAULT '' COMMENT '日志类型',
|
|
||||||
`subtype` varchar(255) NOT NULL DEFAULT '' COMMENT '日志子类型',
|
|
||||||
`param1` varchar(666) NOT NULL DEFAULT '' COMMENT 'param1',
|
|
||||||
`param2` varchar(666) NOT NULL DEFAULT '' COMMENT 'param2',
|
|
||||||
`param3` varchar(666) NOT NULL DEFAULT '' COMMENT 'param3',
|
|
||||||
`param4` varchar(666) NOT NULL DEFAULT '' COMMENT 'param4',
|
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
|
||||||
PRIMARY KEY (`idx`),
|
|
||||||
KEY `account_id_type_subtype` (`account_id`, `type`, `subtype`)
|
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
Loading…
x
Reference in New Issue
Block a user