a set of name-value pairs associate with a workflow id.

Definition:

     Column      |       Type        | Collation | Nullable | Default
-----------------+-------------------+-----------+----------+---------
 workflow_id     | integer           |           | not null |
 parameter_name  | character varying |           | not null |
 parameter_value | character varying |           | not null |
Foreign-key constraints:
    "workflow_parametes_pk" FOREIGN KEY (workflow_id) REFERENCES workflows(workflow_id) ON UPDATE CASCADE ON DELETE CASCADE
    "workflows_workflow_parameters_fk" FOREIGN KEY (workflow_id) REFERENCES workflows(workflow_id)

Columns:

workflow_id: the id of the workflow that this name-value pair is attached to.

parameter_name: the name of the argument to the workflow.

parameter_value: the value of the names parameter for this workflow.

  • No labels