去除插开发者信息

This commit is contained in:
wojiaoyishang
2023-02-11 08:28:23 +08:00
parent b92c450be4
commit 7f7e142dc4
12 changed files with 81 additions and 23 deletions
+11
View File
@@ -370,3 +370,14 @@ CREATE TABLE `alembic_version` (
INSERT INTO `alembic_version` VALUES ('7634e028e338');
SET FOREIGN_KEY_CHECKS = 1;
-- ----------------------------
-- Table structure for plugin_setting
-- ----------------------------
DROP TABLE IF EXISTS `admin_user_role`;
CREATE TABLE `admin_user_role` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '标识',
`key` mediumtext COLLATE utf8_unicode_ci COMMENT '',
`value` mediumtext COLLATE utf8_unicode_ci COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;