From eae69aabad996a6d3f90f0d5164b7152bf186561 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Mon, 20 Jan 2025 16:24:29 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=8F=98=E6=9B=B4=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E5=B8=82=E5=9C=BA=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/desktop/V2.10.5__ddl.sql | 7 +++++++ .../src/main/resources/db/migration/V2.10.5__ddl.sql | 5 +++++ 2 files changed, 12 insertions(+) create mode 100644 core/core-backend/src/main/resources/db/desktop/V2.10.5__ddl.sql diff --git a/core/core-backend/src/main/resources/db/desktop/V2.10.5__ddl.sql b/core/core-backend/src/main/resources/db/desktop/V2.10.5__ddl.sql new file mode 100644 index 0000000000..c577356fca --- /dev/null +++ b/core/core-backend/src/main/resources/db/desktop/V2.10.5__ddl.sql @@ -0,0 +1,7 @@ +ALTER TABLE `xpack_threshold_info` + ADD COLUMN `reci_larksuite_groups` longtext NULL COMMENT '国际飞书群'; + +UPDATE core_sys_setting +SET pval = 'https://cdn0-templates-dataease-cn.fit2cloud.com' +WHERE + pkey = 'template.url'; diff --git a/core/core-backend/src/main/resources/db/migration/V2.10.5__ddl.sql b/core/core-backend/src/main/resources/db/migration/V2.10.5__ddl.sql index 23475e734b..7592c91a8b 100644 --- a/core/core-backend/src/main/resources/db/migration/V2.10.5__ddl.sql +++ b/core/core-backend/src/main/resources/db/migration/V2.10.5__ddl.sql @@ -1,2 +1,7 @@ ALTER TABLE `xpack_threshold_info` ADD COLUMN `reci_larksuite_groups` longtext NULL COMMENT '国际飞书群' AFTER `reci_lark_groups`; + +UPDATE core_sys_setting +SET pval = 'https://cdn0-templates-dataease-cn.fit2cloud.com' +WHERE + pkey = 'template.url';