From b56f56d2094784a70e1e38fca3078cc7cadce193 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Fri, 5 Aug 2022 11:35:16 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E7=B3=BB=E7=BB=9F=E7=AE=A1=E7=90=86-ui?= =?UTF-8?q?=E4=BC=98=E5=8C=96):=20=E9=85=8D=E7=BD=AEui=E4=BC=98=E5=8C=96?= =?UTF-8?q?=E5=AF=B9=E5=BA=94=E7=9A=84=E8=B7=AF=E7=94=B1=E8=8F=9C=E5=8D=95?= =?UTF-8?q?sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/resources/db/migration/V39__1.14.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 backend/src/main/resources/db/migration/V39__1.14.sql diff --git a/backend/src/main/resources/db/migration/V39__1.14.sql b/backend/src/main/resources/db/migration/V39__1.14.sql new file mode 100644 index 0000000000..56a5bf26e8 --- /dev/null +++ b/backend/src/main/resources/db/migration/V39__1.14.sql @@ -0,0 +1,5 @@ +INSERT INTO `sys_menu` VALUES (700, 1, 2, 1, '系统配置', 'sys-settings', 'system/settings/index', 12, 'sys-tools', 'system-settings', b'0', b'0', b'0', NULL, NULL, NULL, NULL, NULL); +INSERT INTO `sys_menu` VALUES (710, 700, 0, 1, '外观配置', 'sys-appearance', 'system/settings/AppearanceSetting', 2, 'sys-tools', 'appearance', b'0', b'0', b'0', 'appearance:read', NULL, NULL, NULL, NULL); +INSERT INTO `sys_menu` VALUES (730, 1, 0, 1, '数据同步表单', 'sys-task-ds-form', 'system/task/form', 11, NULL, '/task-ds-form', b'1', b'0', b'1', NULL, NULL, NULL, NULL, NULL); + +UPDATE `sys_menu` set pid = 700, menu_sort = 1 where menu_id = 6 and `name` = 'system-param'; \ No newline at end of file