add WorkflowJob properties to UnifiedJob

This commit is contained in:
Wayne Witzel III
2016-11-09 12:26:21 -05:00
parent 43450c2694
commit 42f1a491c1
2 changed files with 12 additions and 2 deletions

View File

@@ -185,9 +185,9 @@ class WorkflowJobTemplateNode(WorkflowNodeBase):
return WorkflowJobNode.objects.create(**create_kwargs)
class WorkflowJobNode(WorkflowNodeBase):
job = models.ForeignKey(
job = models.OneToOneField(
'UnifiedJob',
related_name='unified_job_nodes',
related_name='unified_job_node',
blank=True,
null=True,
default=None,