去除插开发者信息

This commit is contained in:
wojiaoyishang
2023-02-11 08:43:48 +08:00
parent 7f7e142dc4
commit 5b8c441b8b
+3 -3
View File
@@ -374,10 +374,10 @@ SET FOREIGN_KEY_CHECKS = 1;
-- ---------------------------- -- ----------------------------
-- Table structure for plugin_setting -- Table structure for plugin_setting
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS `admin_user_role`; DROP TABLE IF EXISTS `plugin_setting`;
CREATE TABLE `admin_user_role` ( CREATE TABLE `plugin_setting` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '标识', `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '标识',
`key` mediumtext COLLATE utf8_unicode_ci COMMENT '', `key` mediumtext COLLATE utf8_unicode_ci COMMENT '',
`value` mediumtext COLLATE utf8_unicode_ci COMMENT '', `value` mediumtext COLLATE utf8_unicode_ci COMMENT '',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; ) ENGINE = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = utf8 COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC;