| 123456789101112 |
- -- auto-generated definition
- create table if not exists devcloud.pipelinePO
- (
- id int not null
- primary key,
- project_id int null,
- name varchar(47) null,
- config_json text null,
- constraint pipeline_project_id_fk
- foreign key (project_id) references project (id)
- );
|