移除表plugin_setting

This commit is contained in:
wojiaoyishang
2023-02-11 12:37:16 +08:00
parent 5b8c441b8b
commit 0ad00448d8
8 changed files with 7 additions and 78 deletions
-11
View File
@@ -370,14 +370,3 @@ CREATE TABLE `alembic_version` (
INSERT INTO `alembic_version` VALUES ('7634e028e338');
SET FOREIGN_KEY_CHECKS = 1;
-- ----------------------------
-- Table structure for plugin_setting
-- ----------------------------
DROP TABLE IF EXISTS `plugin_setting`;
CREATE TABLE `plugin_setting` (
`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 = InnoDB AUTO_INCREMENT = 25 CHARACTER SET = utf8 COLLATE = utf8_unicode_ci ROW_FORMAT = DYNAMIC;