diff --git a/sql/bns_202412_patch.sql b/sql/bns_202412_patch.sql new file mode 100644 index 0000000..522f6e5 --- /dev/null +++ b/sql/bns_202412_patch.sql @@ -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'; \ No newline at end of file