优化系统配置字段长度
This commit is contained in:
34
1-sql/2026-02-03/system/system_param_config.sql
Normal file
34
1-sql/2026-02-03/system/system_param_config.sql
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
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: 03/02/2026 18:51:57
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for system_param_config
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `system_param_config`;
|
||||
CREATE TABLE `system_param_config` (
|
||||
`id` bigint NOT NULL AUTO_INCREMENT,
|
||||
`paramName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '系统参数名称',
|
||||
`paramValue` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '系统参数值',
|
||||
`tenantId` bigint NOT NULL DEFAULT 0 COMMENT '租户ID',
|
||||
`creator` bigint NOT NULL DEFAULT 0 COMMENT '创建者',
|
||||
`createTime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 116 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
Reference in New Issue
Block a user