evorepo/mirrors/migrations/0002_mirrorurl_bandwidth.py
Dan McGee e609552c59 Add bandwidth field to mirror URLs
Not using this anywhere just yet, but suggested by Florian so we can do
some more fancy things down the road, like determine bandwidth by
country.

Signed-off-by: Dan McGee <dan@archlinux.org>
2014-11-01 12:31:52 -05:00

21 lines
474 B
Python

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('mirrors', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='mirrorurl',
name='bandwidth',
field=models.FloatField(null=True, verbose_name=b'bandwidth (mbits)', blank=True),
preserve_default=True,
),
]