From 2a909a69826ca7b1df33f38d96a3c031e6eb4381 Mon Sep 17 00:00:00 2001 From: tian <156691306@qq.com> Date: Wed, 20 Aug 2025 16:20:53 +0800 Subject: [PATCH] create_ufutx_s2_depoly_version --- ...678039_create_ufutx_s2_depoly_version.up.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 1755678039_create_ufutx_s2_depoly_version.up.sql diff --git a/1755678039_create_ufutx_s2_depoly_version.up.sql b/1755678039_create_ufutx_s2_depoly_version.up.sql new file mode 100644 index 0000000..d76a2e0 --- /dev/null +++ b/1755678039_create_ufutx_s2_depoly_version.up.sql @@ -0,0 +1,17 @@ +CREATE TABLE `health`.`ufutx_s2_depoly_version` ( + `id` BIGINT NOT NULL AUTO_INCREMENT , + `appname` VARCHAR(512) NOT NULL COMMENT '应用名' , + `filepath` VARCHAR(512) NOT NULL COMMENT '文件路径' , + `filesize` BIGINT NOT NULL DEFAULT '0' COMMENT '文件尺寸, 单位kb' , + `desc` VARCHAR(1024) NOT NULL COMMENT '简要说明' , + `duration_total` BIGINT NOT NULL DEFAULT '0' COMMENT '总运行时间' , + `duration_curr` BIGINT NOT NULL DEFAULT '0' COMMENT '上线后运行时间' , + `status` TINYINT NOT NULL DEFAULT '1' COMMENT '状态,1=闲置, 2=在线' , + `user_create` INT NOT NULL COMMENT '创建用户id' , + `user_update` INT NOT NULL COMMENT '最后操作用户id' , + `created_at` TIMESTAMP NULL DEFAULT NULL , + `updated_at` TIMESTAMP NULL DEFAULT NULL , + `deleted_at` TIMESTAMP NULL DEFAULT NULL , + `online_at` TIMESTAMP NULL DEFAULT NULL , + PRIMARY KEY (`id`) +) ENGINE = InnoDB; \ No newline at end of file