From 6bf7c40dacc01f58a5e14fd241d7ea9b25e5d6cc Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Tue, 18 Oct 2022 15:28:15 +0800 Subject: [PATCH] =?UTF-8?q?perf(=E8=B7=AF=E7=94=B1):=20=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E4=BD=BF=E7=94=A8=E9=A9=BC=E5=B3=B0=E5=91=BD?= =?UTF-8?q?=E5=90=8D=E8=A7=84=E8=8C=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main/resources/db/migration/V42__1.16.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 backend/src/main/resources/db/migration/V42__1.16.sql diff --git a/backend/src/main/resources/db/migration/V42__1.16.sql b/backend/src/main/resources/db/migration/V42__1.16.sql new file mode 100644 index 0000000000..83256625e6 --- /dev/null +++ b/backend/src/main/resources/db/migration/V42__1.16.sql @@ -0,0 +1,5 @@ +UPDATE `sys_menu` set `component` = REPLACE(`component`, 'SysParam', 'sysParam') where (`component` like '%SysParam%'); + +UPDATE `sys_menu` set `component` = REPLACE(`component`, 'privateForm', 'PrivateForm') where (`component` like '%privateForm%'); + +UPDATE `sys_menu` set `component` = REPLACE(`component`, 'personPwd', 'PsersonPwd') where (`component` like '%personPwd%');