From ff7d414a2f4b7fb2004a9477aac272ed9c783e22 Mon Sep 17 00:00:00 2001 From: qianming Date: Fri, 20 May 2022 11:11:57 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AD=97=E5=85=B8-=E6=BA=90?= =?UTF-8?q?=E7=AB=AF=E7=9B=AE=E6=A0=87=E7=AB=AF=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/db/migration/V1.0.20__add_dict_sourtar.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 report-core/src/main/resources/db/migration/V1.0.20__add_dict_sourtar.sql diff --git a/report-core/src/main/resources/db/migration/V1.0.20__add_dict_sourtar.sql b/report-core/src/main/resources/db/migration/V1.0.20__add_dict_sourtar.sql new file mode 100644 index 00000000..7bf2068d --- /dev/null +++ b/report-core/src/main/resources/db/migration/V1.0.20__add_dict_sourtar.sql @@ -0,0 +1,7 @@ +-- 新增源端目标端字典 + +INSERT INTO `aj_report`.`gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('源端目标端属性', 'SOUTAR_PROPERTIES', '源端目标端属性', '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 ('SOUTAR_PROPERTIES', '源端', 'source', NULL, 1, 'zh', NULL, NULL, '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 ('SOUTAR_PROPERTIES', '目标端', 'target', NULL, 1, 'zh', NULL, NULL, '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 ('SOUTAR_PROPERTIES', '数值', 'value', NULL, 1, 'zh', NULL, NULL, 'admin', NOW(), 'admin', NOW(), 1);