From 2db26a7d9c53e6fc289a6c3a1e443bbdaf939906 Mon Sep 17 00:00:00 2001 From: Foming Date: Fri, 6 Jun 2025 14:44:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=97=A5=E5=8E=86=E5=B1=9E?= =?UTF-8?q?=E6=80=A7sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/db/migration/V1.7.0__update.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 report-core/src/main/resources/db/migration/V1.7.0__update.sql diff --git a/report-core/src/main/resources/db/migration/V1.7.0__update.sql b/report-core/src/main/resources/db/migration/V1.7.0__update.sql new file mode 100644 index 00000000..659f1b48 --- /dev/null +++ b/report-core/src/main/resources/db/migration/V1.7.0__update.sql @@ -0,0 +1,5 @@ +-- 增加日历解析属性 +INSERT INTO `gaea_dict`(`dict_name`, `dict_code`, `remark`, `create_by`, `create_time`, `update_by`, `update_time`, `version`) VALUES ('日历属性', 'CALENDAR_PROPERTIES', '日历属性', 'admin', '2021-04-29 10:28:15', 'admin', '2021-06-23 10:47:20', 1); + +INSERT INTO `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 ('CALENDAR_PROPERTIES', '日期', 'date', NULL, 1, 'zh', NULL, 1, 'admin', '2021-08-20 10:31:51', 'admin', '2021-08-20 10:31:51', 1); +INSERT INTO `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 ('CALENDAR_PROPERTIES', '数据', 'data', NULL, 1, 'zh', NULL, 6, 'admin', '2021-08-20 10:32:52', 'admin', '2021-08-20 10:32:52', 1);