This commit is contained in:
aozhiwei 2024-08-01 09:25:31 +08:00
parent 57c7965468
commit 89492785d6

View File

@ -1909,43 +1909,6 @@ CREATE TABLE `t_server_task_battle_count` (
) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; ) ENGINE=InnoDB AUTO_INCREMENT=10000 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_switch`
--
DROP TABLE IF EXISTS `t_switch`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_switch` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`switch_name` varchar(60) NOT NULL COMMENT '功能名',
`is_open` 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`),
UNIQUE KEY `switch_name` (`switch_name`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `t_annc`
--
DROP TABLE IF EXISTS `t_annc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `t_annc` (
`idx` bigint NOT NULL AUTO_INCREMENT COMMENT '自增id',
`uniid` bigint NOT NULL DEFAULT '0' COMMENT '唯一Id',
`title` varchar(255) NOT NULL COMMENT '公告标题',
`content` 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`),
UNIQUE KEY `uniid` (`uniid`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;
-- --
-- Table structure for table `t_box_alloc` -- Table structure for table `t_box_alloc`
-- --