summaryrefslogtreecommitdiff
path: root/mirrors/models.py
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-15 17:15:17 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-15 17:15:17 -0400
commit86bd3d5e4920fd6d57ac51ed3abf02d2f368f2a7 (patch)
tree7d2f4688eafc26e5ce821d576a4028e986b70f10 /mirrors/models.py
parent7a8b5707b277f052b712c51574b0e28834b5a5f8 (diff)
parent5bfe138a86a98b52f0b6746b900af6431cd4d17a (diff)
Merge tag 'release_2014-11-02' into archweb-generic
Staff groups
Diffstat (limited to 'mirrors/models.py')
-rw-r--r--mirrors/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mirrors/models.py b/mirrors/models.py
index 641a6b97..820f3328 100644
--- a/mirrors/models.py
+++ b/mirrors/models.py
@@ -72,8 +72,9 @@ class MirrorUrl(models.Model):
editable=False)
has_ipv6 = models.BooleanField("IPv6 capable", default=False,
editable=False)
- created = models.DateTimeField(editable=False)
active = models.BooleanField(default=True)
+ bandwidth = models.FloatField("bandwidth (mbits)", null=True, blank=True)
+ created = models.DateTimeField(editable=False)
class Meta:
verbose_name = 'mirror URL'