[Bugfix]修复用户更新失败问题(#840)

This commit is contained in:
wyb
2022-12-22 15:49:50 +08:00
committed by EricZeng
parent 0735b332a8
commit 6ed6d5ec8a
2 changed files with 5 additions and 2 deletions

View File

@@ -6,7 +6,10 @@
### 升级至 `master` 版本
暂无
**SQL 变更**
```sql
alter TABLE logi_security_user MODIFY phone VARCHAR(20);
```
### 升级至 `3.2.0` 版本

View File

@@ -135,7 +135,7 @@ CREATE TABLE `logi_security_user`
pw varchar(2048) not null comment '用户密码',
salt char(5) default '' not null comment '密码盐',
real_name varchar(128) default '' not null comment '真实姓名',
phone char(11) default '' not null comment 'mobile',
phone char(20) default '' not null comment 'mobile',
email varchar(30) default '' not null comment 'email',
dept_id int null comment '所属部门id',
is_delete tinyint(1) default 0 not null comment '逻辑删除',