修改仿真分析项库关联流程模版bug
This commit is contained in:
33
1-sql/2025-12-30/system/simulation_app_call_record.sql
Normal file
33
1-sql/2025-12-30/system/simulation_app_call_record.sql
Normal file
@@ -0,0 +1,33 @@
|
||||
/*
|
||||
Navicat Premium Dump SQL
|
||||
|
||||
Source Server : 基线版本
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 80043 (8.0.43)
|
||||
Source Host : 192.168.65.161:3306
|
||||
Source Schema : spdm_baseline
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 80043 (8.0.43)
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 30/12/2025 20:03:18
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for simulation_app_call_record
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `simulation_app_call_record`;
|
||||
CREATE TABLE `simulation_app_call_record` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`appName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '应用名称',
|
||||
`appType` tinyint NOT NULL COMMENT '应用类型 1:本地应用 2:云应用 3:hpc求解应用 4:web应用',
|
||||
`creator` bigint NOT NULL COMMENT '应用调用人',
|
||||
`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '应用调用时间',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
Reference in New Issue
Block a user