From 893b56244ea60ecfc031a97e528816b3a889344b Mon Sep 17 00:00:00 2001 From: junjie Date: Fri, 7 May 2021 10:26:33 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=BA=BF=E4=B8=8A=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E5=90=8D=E7=A7=B0=E6=98=AFdataease=EF=BC=8Cflyway=20r?= =?UTF-8?q?emove=20database=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/resources/db/migration/V10__chart.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/db/migration/V10__chart.sql b/backend/src/main/resources/db/migration/V10__chart.sql index 18fe8b672e..0fa16aa28f 100644 --- a/backend/src/main/resources/db/migration/V10__chart.sql +++ b/backend/src/main/resources/db/migration/V10__chart.sql @@ -35,7 +35,7 @@ CREATE TABLE IF NOT EXISTS `chart_view` ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4; -ALTER TABLE `data_ease`.`chart_view` +ALTER TABLE `chart_view` ADD COLUMN `snapshot` longtext NULL COMMENT '缩略图 ' AFTER `update_time`, ADD COLUMN `style_priority` varchar(255) NULL COMMENT '样式优先级 panel 仪表盘 view 视图' AFTER `snapshot`; -- chart end