From 9499240a594730f8068081a692076ed0b4e3907d Mon Sep 17 00:00:00 2001 From: fengshuonan Date: Mon, 17 Oct 2022 00:46:52 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=907.2.5=E3=80=91=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E5=AF=86=E7=A0=81=E5=8A=A0=E5=AF=86=E7=9A=84=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=BC=80=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/mysql/V7.2.5_20221017_0045__add_auth_config.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/main/resources/db/migration/mysql/V7.2.5_20221017_0045__add_auth_config.sql diff --git a/src/main/resources/db/migration/mysql/V7.2.5_20221017_0045__add_auth_config.sql b/src/main/resources/db/migration/mysql/V7.2.5_20221017_0045__add_auth_config.sql new file mode 100644 index 00000000..b2e7f468 --- /dev/null +++ b/src/main/resources/db/migration/mysql/V7.2.5_20221017_0045__add_auth_config.sql @@ -0,0 +1 @@ +INSERT INTO `sys_config`(`config_id`, `config_name`, `config_code`, `config_value`, `sys_flag`, `remark`, `status_flag`, `group_code`, `del_flag`, `create_time`, `create_user`, `update_time`, `update_user`) VALUES (1581687626275000321, '登录密码是否进行RSA加密校验,false为关闭', 'SYS_AUTH_PASSWORD_RSA_VALIDATE', 'true', 'Y', NULL, 1, 'auth_config', 'N', NULL, NULL, NULL, NULL);