summaryrefslogtreecommitdiff
path: root/mirrors/migrations/0002_mirrorurl_bandwidth.py
blob: f011819961c9269d63f7945101a52d9b0869aafd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- 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,
        ),
    ]