Bonus-ProtectionSetting-Cloud/sql/bns_202504_patch/bns_202504_patch.sql

20 lines
500 B
MySQL
Raw Normal View History

2025-10-20 13:32:41 +08:00
-- 照片地址
alter table sys_user
add photo_url varchar(255) null comment '照片地址';
-- 生日
alter table sys_user
add birthday date null comment '生日';
-- 生效开始日期
alter table sys_user
add effective_start_day date null comment '生效开始日期';
-- 生效截止日期
alter table sys_user
add effective_end_day date null comment '生效截止日期';
-- 组织全称
alter table sys_dept
add dept_full_name varchar(1000) null comment '组织全称';