1
This commit is contained in:
parent
2a0048ab32
commit
ad3e11ab2b
@ -1027,13 +1027,12 @@ DROP TABLE IF EXISTS `t_chip_page`;
|
|||||||
CREATE TABLE `t_chip_page` (
|
CREATE TABLE `t_chip_page` (
|
||||||
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
|
||||||
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
|
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
|
||||||
`page_name` varchar(50) NOT NULL DEFAULT '' COMMENT '页名',
|
`hero_uniid` int(11) NOT NULL DEFAULT '0' COMMENT '英雄唯一id';
|
||||||
`page_id` int(11) NOT NULL DEFAULT '0' COMMENT '页id',
|
|
||||||
`data` mediumblob COMMENT 'data',
|
`data` mediumblob COMMENT 'data',
|
||||||
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
|
||||||
PRIMARY KEY (`idx`),
|
PRIMARY KEY (`idx`),
|
||||||
UNIQUE KEY `account_page_id` (`account_id`, `page_id`),
|
UNIQUE KEY `hero_uniid` (`hero_uniid`),
|
||||||
KEY `account_id` (`account_id`)
|
KEY `account_id` (`account_id`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user