Skip to content
Snippets Groups Projects
Commit 28322158 authored by Nathan Hertz's avatar Nathan Hertz
Browse files

WorkflowRequest: added foreign key reference to execution_id

parent 8862bd85
No related branches found
No related tags found
No related merge requests found
......@@ -420,7 +420,7 @@ class WorkflowRequest(Base, WorkflowRequestIF):
)
argument = sa.Column("argument", sa.JSON)
state = sa.Column("state", sa.String)
execution_id = sa.Column("execution_id", sa.Integer)
execution_id = sa.Column("execution_id", sa.Integer, sa.ForeignKey('capability_executions.id'))
files = relationship("WorkflowRequestFile", backref="request")
@property
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment