update to last commit, left an extra column on workflow model that does not need to exist.

This commit is contained in:
Dan Funk 2020-02-07 11:57:48 -05:00
parent e1148e1b3d
commit eae6c8dd1a
1 changed files with 0 additions and 1 deletions

View File

@ -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):