Skip to content

Commit 24bd6dc

Browse files
committed
增加忘记密码功能
1 parent 3e64612 commit 24bd6dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
ALTER TABLE `sys_config`
2+
ADD COLUMN `allow_forget_psw` tinyint(1) NOT NULL DEFAULT 0 COMMENT '是否开启忘记密码' AFTER `allow_captcha`,
3+
ADD COLUMN `forget_psw_require_mail` tinyint(1) NOT NULL DEFAULT 0 COMMENT '忘记密码是否使用邮箱' AFTER `allow_forget_psw`,
4+
ADD COLUMN `forget_psw_require_sms` tinyint(1) NOT NULL DEFAULT 0 COMMENT '忘记密码是否使用短信' AFTER `forget_psw_require_mail`,
5+
ADD COLUMN `sign_name` varchar(200) NOT NULL DEFAULT '' COMMENT 'signName' AFTER `forget_psw_require_sms`,
6+
ADD COLUMN `template_code` varchar(200) NOT NULL DEFAULT '' COMMENT 'templateCode' AFTER `sign_name`;

0 commit comments

Comments
 (0)