From 1e1f9aa1dc40fe3ce506d5a2499cf336ee44d22d Mon Sep 17 00:00:00 2001 From: qianming Date: Thu, 22 Jul 2021 13:35:07 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=B0=94=E6=B3=A1=E5=9C=B0?= =?UTF-8?q?=E5=9B=BE=E5=AD=97=E5=85=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/db/migration/V1.0.7__add_dict_airmap.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 report-core/src/main/resources/db/migration/V1.0.7__add_dict_airmap.sql diff --git a/report-core/src/main/resources/db/migration/V1.0.7__add_dict_airmap.sql b/report-core/src/main/resources/db/migration/V1.0.7__add_dict_airmap.sql new file mode 100644 index 00000000..2e3bd727 --- /dev/null +++ b/report-core/src/main/resources/db/migration/V1.0.7__add_dict_airmap.sql @@ -0,0 +1,5 @@ +/* +字典更新 +*/ +INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('CHART_PROPERTIES', '地图地名', 'name', NULL, 1, 'zh', NULL, 10, 'admin', now(), 'admin', now(), 1); +INSERT INTO `aj_report`.`gaea_dict_item`(`dict_code`, `item_name`, `item_value`, `item_extend`, `enabled`, `locale`, `remark`, `sort`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('CHART_PROPERTIES', '地图数值', 'value', NULL, 1, 'zh', NULL, 10, 'admin', now(), 'admin', now(), 1);