Set: last import to Null on default
This commit is contained in:
parent
798b329a83
commit
f11d49baa8
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class ImportSourceURLs(models.Model):
|
||||||
|
|
||||||
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
date_added = models.DateTimeField(auto_now_add=True, editable=True)
|
||||||
|
|
||||||
last_imported = models.DateTimeField(auto_now=True, editable=True)
|
last_imported = models.DateTimeField(editable=True, default=None, null=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("Import Source URL")
|
verbose_name = _("Import Source URL")
|
||||||
|
|
Loading…
Reference in a new issue