update to last commit, left an extra column on workflow model that does not need to exist.
This commit is contained in:
parent
e1148e1b3d
commit
eae6c8dd1a
|
@ -35,7 +35,6 @@ class WorkflowModel(db.Model):
|
|||
status = db.Column(db.Enum(WorkflowStatus))
|
||||
study_id = db.Column(db.Integer, db.ForeignKey('study.id'))
|
||||
workflow_spec_id = db.Column(db.String, db.ForeignKey('workflow_spec.id'))
|
||||
last_completed_task_id = db.Column(db.String)
|
||||
|
||||
|
||||
class Task(object):
|
||||
|
|
Loading…
Reference in New Issue