From b852e7d24b94f62ff744a03b45f81b61251b6950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E5=81=9A=E7=A0=81=E5=86=9C?= <599854767@qq.com> Date: Mon, 14 Feb 2022 21:12:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20mysql=20=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E9=80=9A=E7=9F=A5=E8=A1=A8=E5=AD=97=E6=AE=B5=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- document/admin-mysql.sql | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/document/admin-mysql.sql b/document/admin-mysql.sql index b7dca2a..2899457 100644 --- a/document/admin-mysql.sql +++ b/document/admin-mysql.sql @@ -66,7 +66,7 @@ create table sys_notice ( notice_id int(4) not null auto_increment comment '公告ID', notice_title varchar(50) not null comment '公告标题', notice_type char(1) not null comment '公告类型(1通知 2公告)', - notice_content longblob default null comment '公告内容', + notice_content varchar(500) default null comment '公告内容', status char(1) default '0' comment '公告状态(0正常 1关闭)', create_by varchar(64) default '' comment '创建者', create_time datetime comment '创建时间', @@ -77,7 +77,6 @@ create table sys_notice ( ) engine=innodb auto_increment=10 comment = '通知公告表'; - -- ---------------------------- -- Table structure for sys_dept -- ----------------------------