Adds field on import job to check if job completed
the task isn't a reliable indicator, unfortunately.
This commit is contained in:
parent
e60a984bea
commit
d04271af75
4 changed files with 22 additions and 1 deletions
|
@ -42,6 +42,7 @@ class ImportJob(models.Model):
|
|||
created_date = models.DateTimeField(default=timezone.now)
|
||||
task_id = models.CharField(max_length=100, null=True)
|
||||
include_reviews = models.BooleanField(default=True)
|
||||
complete = models.BooleanField(default=False)
|
||||
privacy = models.CharField(
|
||||
max_length=255,
|
||||
default='public',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue