This commit is contained in:
aozhiwei 2024-04-15 13:45:35 +08:00
parent cde2a9af4f
commit 09ed66db11
2 changed files with 21 additions and 0 deletions

View File

@ -202,6 +202,26 @@ CREATE TABLE `t_guild_log` (
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
--
-- Table structure for table `t_recent_battle`
--
DROP TABLE IF EXISTS `t_recent_battle`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_recent_battle` (
`idx` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '自增id',
`account_id1` varchar(60) CHARACTER SET utf8 NOT NULL COMMENT '账号1',
`account_id2` varchar(60) CHARACTER SET utf8 NOT NULL COMMENT '账号2',
`last_battle_time` int(11) NOT NULL DEFAULT '0' COMMENT '最后战斗时间',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`idx`),
KEY `account_id1_account_id2` (`account_id1`, `account_id2`)
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
--
-- Table structure for table `t_log`
--

View File

@ -370,6 +370,7 @@ message SMRecommendList
optional int32 errcode = 1;
optional string errmsg = 2;
repeated MFUser users = 3;
optional int32 type = 4;
}
// --- ---