summaryrefslogtreecommitdiffstats
path: root/mirrors/models.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-05-18 20:42:05 -0500
committerDan McGee <dan@archlinux.org>2012-05-18 21:36:05 -0500
commit06f1bb99617e532f6b39c135370de79be7c270fa (patch)
tree10277bc94b801bdd20e9af9ad0302bc7635cd2a7 /mirrors/models.py
parentcf67e7952396121d3f7190195d812ea3f5fc7dcf (diff)
downloadarchweb-06f1bb99617e532f6b39c135370de79be7c270fa.tar.gz
archweb-06f1bb99617e532f6b39c135370de79be7c270fa.zip
mirrors: add an alternate_email column
We have a lot of these in the freeform text area in the mirror notes; attempt to make this data usable as necessary if we want to do some sort of mirror notification automation in the future. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/models.py')
-rw-r--r--mirrors/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mirrors/models.py b/mirrors/models.py
index 8c2bd7fc..9a545b51 100644
--- a/mirrors/models.py
+++ b/mirrors/models.py
@@ -20,6 +20,7 @@ class Mirror(models.Model):
upstream = models.ForeignKey('self', null=True, on_delete=models.SET_NULL)
country = CountryField(blank=True, db_index=True)
admin_email = models.EmailField(max_length=255, blank=True)
+ alternate_email = models.EmailField(max_length=255, blank=True)
public = models.BooleanField(default=True)
active = models.BooleanField(default=True)
isos = models.BooleanField("ISOs", default=True)