This commit is contained in:
2023-08-18 18:35:49 +08:00
parent 2039c729e5
commit c9fbeaf1a1
7 changed files with 202 additions and 35 deletions

View File

@@ -11,7 +11,7 @@
Target Server Version : 100338 (10.3.38-MariaDB)
File Encoding : 65001
Date: 17/08/2023 19:43:37
Date: 18/08/2023 18:35:27
*/
SET NAMES utf8mb4;
@@ -31,7 +31,7 @@ CREATE TABLE `config` (
`update_time` datetime NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
`comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 33 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
) ENGINE = InnoDB AUTO_INCREMENT = 34 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config
@@ -59,5 +59,6 @@ INSERT INTO `config` VALUES (29, 'SystemMonitor', 'backup', '{\"cn\":\"周期备
INSERT INTO `config` VALUES (30, 'SystemMonitor', 'databaseThreshold', '{\"cn\":\"\",\"en\":\"threshold of database settings\"}', NULL, '{\"Major\":\"\", \"Minor\": \"\",\"Critical\": \"\",\"Warning\": \"\",\"Event\":\"\"}', '2023-08-15 17:32:55', NULL);
INSERT INTO `config` VALUES (31, 'LOG', 'remoteLogSet', '{\"cn\":\"\",\"en\":\"Log Remote Output Settings\"}', NULL, '{\"logIp\":\"192222\",\"logDirectory\":\"1023012312\"}', '2023-08-16 15:36:20', NULL);
INSERT INTO `config` VALUES (32, 'MML', 'operationSet', '{\"cn\":\"\",\"en\":\"Operation settings\"}', NULL, '{\"listeningAddress\":\"123121111111111\",\"listeningPort\":\"32131\"}', '2023-08-17 10:25:07', NULL);
INSERT INTO `config` VALUES (33, 'LOG', 'ftpLogSet', '{\"cn\":\"FTP日志文件接口设置\",\"en\":\"FTP Log File Interface Settings\"}', '7', NULL, '2023-08-18 17:30:24', NULL);
SET FOREIGN_KEY_CHECKS = 1;