This commit is contained in:
hujiabin 2024-02-01 16:01:06 +08:00
parent 2a0048ab32
commit ad3e11ab2b

View File

@ -1027,13 +1027,12 @@ DROP TABLE IF EXISTS `t_chip_page`;
CREATE TABLE `t_chip_page` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_id` varchar(60) NOT NULL DEFAULT '' COMMENT '账号id',
`page_name` varchar(50) NOT NULL DEFAULT '' COMMENT '页名',
`page_id` int(11) NOT NULL DEFAULT '0' COMMENT '页id',
`hero_uniid` int(11) NOT NULL DEFAULT '0' COMMENT '英雄唯一id';
`data` mediumblob COMMENT 'data',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
UNIQUE KEY `account_page_id` (`account_id`, `page_id`),
UNIQUE KEY `hero_uniid` (`hero_uniid`),
KEY `account_id` (`account_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;