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

Fixed a typo in CapabilityExecution

parent 69a83254
No related branches found
No related tags found
No related merge requests found
......@@ -148,10 +148,10 @@ class CapabilityExecution(Base, CapabilityExecutionIF):
"""
__tablename__ = 'capability_executions'
id = sa.Column('execution_id', sa.Integer, primary_key=True)
workflow_request = sa.Column(
'workflow_request_id',
capability_request = sa.Column(
'capability_request_id',
sa.Integer,
sa.ForeignKey('workflow_requests.workflow_request_id')
sa.ForeignKey('capability_requests.capability_request_id')
)
current_step = sa.Column('current_step', sa.Integer)
......
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