This commit is contained in:
aozhiwei 2024-11-15 16:24:13 +08:00
parent c3e63de718
commit c6ca7bbf1d

View File

@ -73,7 +73,8 @@ CREATE TABLE `t_user` (
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
UNIQUE KEY `uk_account_id` (`account_id`),
KEY (`openid`),
KEY `idx_openid` (`openid`),
KEY `idx_invited` (`invited`),
PRIMARY KEY (`idx`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;