From 55d6d42f1564a1957acaa72b01f7ba11fd3b0d21 Mon Sep 17 00:00:00 2001 From: fit2cloudrd Date: Sat, 11 May 2024 16:14:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4desktop=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E4=B8=AD=E4=B8=8D=E9=9C=80=E8=A6=81=E7=9A=84SQL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/desktop/V2.6__ddl.sql | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/core-backend/src/main/resources/db/desktop/V2.6__ddl.sql b/core/core-backend/src/main/resources/db/desktop/V2.6__ddl.sql index 8d91458353..d6d913e80e 100644 --- a/core/core-backend/src/main/resources/db/desktop/V2.6__ddl.sql +++ b/core/core-backend/src/main/resources/db/desktop/V2.6__ddl.sql @@ -5,10 +5,3 @@ update data_visualization_info set version = 2; ALTER TABLE `visualization_template` ADD COLUMN `version` int NULL DEFAULT 3 COMMENT '使用资源的版本'; update visualization_template set version = 2; -update - core_chart_view as a, - core_chart_view as b -set - a.x_axis = b.x_axis_ext, - a.x_axis_ext = b.x_axis -where a.id = b.id and a.type = 'table-pivot';