From 415050e6ddec0ae67a6798008740796dd1ce2588 Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Tue, 31 Dec 2024 10:33:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E9=97=A8=E8=A1=A8=E5=8A=A0=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/bns_202412_patch.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 sql/bns_202412_patch.sql 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