部门表加字段

This commit is contained in:
sxu 2024-12-31 10:33:12 +08:00
parent 2567d81ff4
commit 415050e6dd
1 changed files with 16 additions and 0 deletions

16
sql/bns_202412_patch.sql Normal file
View File

@ -0,0 +1,16 @@
SET NAMES utf8mb4;
-- 省
alter table sys_dept add province varchar(50) null comment '';
-- 市
alter table sys_dept add city varchar(50) null comment '';
-- 县
alter table sys_dept add district varchar(50) null comment '';
-- 详细地址
alter table sys_dept add address varchar(255) null comment '详细地址';
-- 公司简称
alter table sys_dept add dept_abbreviation varchar(255) null comment '公司简称';
-- 公司概述
alter table sys_dept add remark varchar(255) null comment '公司概述';
-- 公司logo
alter table sys_dept add logo varchar(255) null comment '公司logo';