pipeline.sql 337 B

123456789101112
  1. -- auto-generated definition
  2. create table if not exists devcloud.pipelinePO
  3. (
  4. id int not null
  5. primary key,
  6. project_id int null,
  7. name varchar(47) null,
  8. config_json text null,
  9. constraint pipeline_project_id_fk
  10. foreign key (project_id) references project (id)
  11. );