This commit is contained in:
aozhiwei 2024-08-13 14:09:42 +08:00
parent 166509bf93
commit 6f3a2767aa

View File

@ -61,10 +61,10 @@ CREATE TABLE `t_login_annc` (
`version` varchar(32) NOT NULL DEFAULT '' COMMENT '版本',
`platform` int(11) NOT NULL DEFAULT '0' COMMENT '平台 1:Android 2:ios',
`click_type` int(11) NOT NULL DEFAULT '0' COMMENT ' 0:不能进游戏 1:可以进游戏',
`is_effect` int(11) NOT NULL DEFAULT '0' COMMENT '是否生效',
`enable` int(11) NOT NULL DEFAULT '0' COMMENT '是否生效',
`content` text DEFAULT '' COMMENT '内容',
PRIMARY KEY (`idx`),
UNIQUE KEY `model_type` (`model`,`type`)
UNIQUE KEY `uk_annc_type_platform` (`annc_type`,`platform`)
) ENGINE=InnoDB AUTO_INCREMENT=10001 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
/*!40101 SET character_set_client = @saved_cs_client */;