ramp_database.model.Workflow

class ramp_database.model.Workflow(name)

Workflow table.

Parameters
namestr

The name of the workflow.

Attributes
idint

The ID of the table row.

namestr

The name of the workflow.

problemslist of ramp_database.model.Problem

A back-reference to the problems using this workflow.

elementslist of ramp_database.model.WorkflowElement

A back-reference to the elements of the workflow.

__init__(name)

A simple constructor that allows initialization from kwargs.

Sets attributes on the constructed instance using the names and values in kwargs.

Only keys that are present as attributes of the instance’s class are allowed. These could be, for example, any mapped columns or relationships.