diff --git a/awx/main/migrations/0054_v340_workflow_convergence.py b/awx/main/migrations/0054_v340_workflow_convergence.py index 72811f01a2..e0c2f833fb 100644 --- a/awx/main/migrations/0054_v340_workflow_convergence.py +++ b/awx/main/migrations/0054_v340_workflow_convergence.py @@ -15,6 +15,6 @@ class Migration(migrations.Migration): migrations.AddField( model_name='workflowjobnode', name='do_not_run', - field=models.BooleanField(default=False), + field=models.BooleanField(default=False, help_text='Indidcates that a job will not be created when True. Workflow runtime semantics will mark this True if the node is in a path that will decidedly not be ran. A value of False means the node may not run.'), ), ] diff --git a/awx/main/models/workflow.py b/awx/main/models/workflow.py index 200fd3b645..058b31f80b 100644 --- a/awx/main/models/workflow.py +++ b/awx/main/models/workflow.py @@ -185,7 +185,10 @@ class WorkflowJobNode(WorkflowNodeBase): editable=False, ) do_not_run = models.BooleanField( - default=False + default=False, + help_text=_("Indidcates that a job will not be created when True. Workflow runtime " + "semantics will mark this True if the node is in a path that will " + "decidedly not be ran. A value of False means the node may not run."), ) def get_absolute_url(self, request=None):