Browse Source

web/postkey/models.py: add "external" field (bool)

It's needed for marking imported hosts from external sources.
Availability checks will not remove this hosts until other host-add
services implement auto-removing.
pull/1/head
Hidden Z 14 years ago
parent
commit
7410eb788d
  1. 1
      web/postkey/models.py

1
web/postkey/models.py

@ -8,6 +8,7 @@ class i2phost(models.Model): @@ -8,6 +8,7 @@ class i2phost(models.Model):
description = models.TextField("Description", blank=True)
date_added = models.DateTimeField(auto_now_add=True)
activated = models.BooleanField(default=False)
external = models.BooleanField(default=False)
def __unicode__(self):
return self.name

Loading…
Cancel
Save