| 12345678910111213 |
- create table if not exists devcloud.pipeline_history
- (
- id int not null
- primary key,
- pipeline_id int null,
- start_time timestamp default CURRENT_TIMESTAMP not null,
- user_id int null,
- result varchar(15) null,
- details text null,
- constraint pipeline_history_pipeline_id_fk
- foreign key (pipeline_id) references devcloud.pipelinePO (id)
- );
|