Browse Source

web/postkey/models.py: last_seen is null by default now

pull/1/head
Hidden Z 14 years ago
parent
commit
2529b6d6c3
  1. 2
      web/postkey/models.py

2
web/postkey/models.py

@ -8,7 +8,7 @@ class i2phost(models.Model): @@ -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…
Cancel
Save