Skip to content

Commit

Permalink
fix: dag table schema error
Browse files Browse the repository at this point in the history
  • Loading branch information
wangqi committed Aug 25, 2024
1 parent 520818b commit 9d29f88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/docker/mysql/init.d/carp-dag.sql
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ create table carp_dag_instance
uuid varchar(36) not null comment 'instance id',
inputs text comment '输入参数',
outputs text comment '输出参数',
status varchar(8) not null comment '状态',
status varchar(8) comment '状态',
start_time timestamp not null comment '启动时间',
end_time timestamp comment '结束时间',
creator varchar(32) comment 'creator',
Expand All @@ -360,7 +360,7 @@ create table carp_dag_step
uuid varchar(36) not null comment 'instance id',
inputs text comment '输入参数',
outputs text comment '输出参数',
status varchar(8) not null comment '状态',
status varchar(8) comment '状态',
start_time timestamp not null comment '启动时间',
end_time timestamp comment '结束时间',
creator varchar(32) comment 'creator',
Expand Down

0 comments on commit 9d29f88

Please sign in to comment.