From bcce99bb7ebf8a2c473b6800c8acecd17108eb80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=96=AF=E7=8B=82=E7=9A=84=E7=8B=AE=E5=AD=90Li?= <15040126243@163.com> Date: Fri, 15 Apr 2022 12:21:45 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E5=A4=8D=20=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E9=9B=AA=E8=8A=B1id=20=E5=AF=BC=E8=87=B4=20=E9=83=A8=E9=97=A8?= =?UTF-8?q?=E7=A5=96=E7=B1=8D=E5=AD=97=E6=AE=B5=20=E9=95=BF=E5=BA=A6?= =?UTF-8?q?=E4=B8=8D=E5=A4=9F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/ry-cloud.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/ry-cloud.sql b/sql/ry-cloud.sql index 51139fe70..415d7dee6 100644 --- a/sql/ry-cloud.sql +++ b/sql/ry-cloud.sql @@ -7,7 +7,7 @@ drop table if exists sys_dept; create table sys_dept ( dept_id bigint(20) not null comment '部门id', parent_id bigint(20) default 0 comment '父部门id', - ancestors varchar(50) default '' comment '祖级列表', + ancestors varchar(500) default '' comment '祖级列表', dept_name varchar(30) default '' comment '部门名称', order_num int(4) default 0 comment '显示顺序', leader varchar(20) default null comment '负责人',