mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-22 20:44:55 +00:00
web/postkey/models.py: last_seen is null by default now
This commit is contained in:
parent
150de19f32
commit
2529b6d6c3
@ -8,7 +8,7 @@ class i2phost(models.Model):
|
||||
description = models.TextField("Description", blank=True)
|
||||
date_added = models.DateTimeField(auto_now_add=True)
|
||||
# Last time this host was up
|
||||
last_seen = models.DateTimeField()
|
||||
last_seen = models.DateTimeField(null=True)
|
||||
# Not-activated hosts will not appear in exported hosts.txt
|
||||
activated = models.BooleanField(default=False)
|
||||
# Indicator for hosts added from external source
|
||||
|
Loading…
x
Reference in New Issue
Block a user