合同模板表增加注释

This commit is contained in:
丁瑞超 2020-11-03 09:17:00 +08:00
parent 5ee06c0fda
commit 16a9dc401f
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ drop table if exists contract_type;
create table contract_type ( create table contract_type (
id bigint(20) not null auto_increment comment 'ID', id bigint(20) not null auto_increment comment 'ID',
name varchar(50) not null comment '分类名称', name varchar(50) not null comment '分类名称',
english_name varchar(50) not null comment '', english_name varchar(50) not null comment '英文名称',
del_flag char(1) default '0' comment '删除标志0代表存在 2代表删除', del_flag char(1) default '0' comment '删除标志0代表存在 2代表删除',
create_by varchar(64) default '' comment '创建者', create_by varchar(64) default '' comment '创建者',
create_time datetime comment '创建时间', create_time datetime comment '创建时间',