diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 21:55:11 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-04-15 21:55:11 -0400 |
commit | 29ffe1b85ba4bf077d529603982d5bd810c68a1f (patch) | |
tree | 9bb2ea435ac5b7554bfc555b3c3877ea26e43087 /mirrors/models.py | |
parent | ce1f17e5104d44fa833090c47dd76466a2d7f743 (diff) | |
parent | 86bd3d5e4920fd6d57ac51ed3abf02d2f368f2a7 (diff) |
Merge branch 'archweb-generic'
Diffstat (limited to 'mirrors/models.py')
-rw-r--r-- | mirrors/models.py | 3 |
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' |