This commit is contained in:
aozhiwei 2024-11-11 17:43:55 +08:00
parent 2089437778
commit f771cc440e

View File

@ -83,7 +83,8 @@ CREATE TABLE `t_chip` (
`item_num` int(11) NOT NULL DEFAULT '0' COMMENT '道具数量',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
UNIQUE KEY `uk_account_id` (`account_id`),
KEY `idx_account_id` (`account_id`),
KEY `idx_account_id_item_id` (`account_id`, `item_id`),
PRIMARY KEY (`idx`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;