fix -- 优化sql脚本,添加默认值

This commit is contained in:
konbai
2022-06-16 15:43:39 +08:00
parent 9f2fedd5c6
commit d06468e592
6 changed files with 53 additions and 52 deletions

View File

@@ -16,7 +16,7 @@ create table wf_copy (
create_time date,
update_by varchar(64) default '',
update_time date,
del_flag nchar(1)
del_flag nchar(1) default '0'
);
alter table wf_copy add constraint pk_wf_copy primary key (copy_id);