mirror of
https://github.com/ansible/awx.git
synced 2026-05-22 08:17:39 -02:30
Add a host_name field to JobHostSummary and migrate to it, so we have at
least that information in job data if the host has been removed
This commit is contained in:
@@ -367,6 +367,12 @@ class JobHostSummary(CreatedModifiedModel):
|
||||
editable=False,
|
||||
)
|
||||
|
||||
host_name = models.CharField(
|
||||
max_length=1024,
|
||||
default='',
|
||||
editable=False,
|
||||
)
|
||||
|
||||
changed = models.PositiveIntegerField(default=0, editable=False)
|
||||
dark = models.PositiveIntegerField(default=0, editable=False)
|
||||
failures = models.PositiveIntegerField(default=0, editable=False)
|
||||
|
||||
Reference in New Issue
Block a user