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:
Matthew Jones
2014-07-11 16:02:37 -04:00
parent fb9596d00f
commit f93e60979f
4 changed files with 885 additions and 1 deletions

View File

@@ -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)