From 3c6c1f9c03c49fc4487a5bf8f0ea6ce93c387139 Mon Sep 17 00:00:00 2001 From: taojinlong Date: Tue, 24 May 2022 20:58:31 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20presto=20=E6=8F=92?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/resources/db/migration/V35__1.11.sql | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/src/main/resources/db/migration/V35__1.11.sql b/backend/src/main/resources/db/migration/V35__1.11.sql index e22f23015c..e3980c2949 100644 --- a/backend/src/main/resources/db/migration/V35__1.11.sql +++ b/backend/src/main/resources/db/migration/V35__1.11.sql @@ -56,3 +56,9 @@ ALTER TABLE `chart_view` ADD COLUMN `view_fields` LONGTEXT COMMENT '视图字段 UPDATE `chart_view` SET `view_fields` = '[]'; ALTER TABLE `chart_view_cache` ADD COLUMN `view_fields` LONGTEXT COMMENT '视图字段集合'; UPDATE `chart_view_cache` SET `view_fields` = '[]'; + + +INSERT INTO `my_plugin` (`name`, `store`, `free`, `cost`, `category`, `descript`, `version`, `creator`, `load_mybatis`, + `install_time`, `module_name`, `ds_type`) +VALUES ('Presto 数据源插件', 'default', '0', '0', 'datasource', 'Presto 插件', '1.0-SNAPSHOT', 'DATAEASE', '0', + '1650765903630', 'presto-backend', 'presto'); \ No newline at end of file