From f84f288befd9a1cb773c146b6da7ba05273ac3d7 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Fri, 27 Nov 2020 00:01:34 -0500 Subject: [PATCH] Apply suggestions from code review minor nit --- archivebox/core/models.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archivebox/core/models.py b/archivebox/core/models.py index c273c072..48ebd43d 100644 --- a/archivebox/core/models.py +++ b/archivebox/core/models.py @@ -161,13 +161,13 @@ class Snapshot(models.Model): class ArchiveResult(models.Model): snapshot = models.ForeignKey(Snapshot, on_delete=models.CASCADE) cmd = models.CharField(max_length=500) - pwd = models.CharField(max_length=200) + pwd = models.CharField(max_length=256) cmd_version = models.CharField(max_length=32) - output = models.CharField(max_length=500) + output = models.CharField(max_length=512) start_ts = models.DateTimeField() end_ts = models.DateTimeField() status = models.CharField(max_length=16, choices=STATUS_CHOICES) - extractor = models.CharField(choices=EXTRACTORS, blank=False, max_length=32) + extractor = models.CharField(choices=EXTRACTORS, max_length=32) def __str__(self): return self.extractor