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:42:23
Date: 18/08/2023 18:34:47
*/
SET NAMES utf8mb4;
@@ -31,7 +31,14 @@ CREATE TABLE `pm_template` (
`description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
`created_time` datetime NULL DEFAULT current_timestamp() ON UPDATE CURRENT_TIMESTAMP,
`updata_time` datetime NULL DEFAULT NULL,
`kpi_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of pm_template
-- ----------------------------
INSERT INTO `pm_template` VALUES (8, '测试模板名称', 'AMF', 'EpRpDynN12Amf', 'AMF.UeAuthCfmSucc,AMF.UeAuthCfmReq', NULL, NULL, '2023-08-17 18:44:22', NULL, NULL);
INSERT INTO `pm_template` VALUES (10, '再测试修改2', 'AMF', 'AmfFunction', 'AMF.RegSub.CmIdle,AMF.RegSub._NumSeg', NULL, NULL, '2023-08-18 10:23:52', NULL, NULL);
SET FOREIGN_KEY_CHECKS = 1;