修改 mysql 系统通知表字段结构类型

This commit is contained in:
不做码农 2022-02-14 21:12:22 +08:00
parent 80517e208b
commit b852e7d24b

View File

@ -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
-- ----------------------------