2025-04-14 13:55:35 +08:00
|
|
|
-- 照片地址
|
|
|
|
|
alter table sys_user
|
2025-04-20 09:22:43 +08:00
|
|
|
add photo_url varchar(255) null comment '照片地址';
|
|
|
|
|
|
|
|
|
|
-- 生日
|
|
|
|
|
alter table sys_user
|
|
|
|
|
add birthday date null comment '生日';
|
|
|
|
|
|
2025-04-21 11:03:24 +08:00
|
|
|
-- 组织全称
|
2025-04-20 09:22:43 +08:00
|
|
|
alter table sys_dept
|
2025-04-21 11:03:12 +08:00
|
|
|
add dept_full_name varchar(1000) null comment '组织全称';
|