aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/migrations/0009_layerbranch_collection.py
blob: bf6276f5da27f37655f71c0e9f1c66244c5f04fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('layerindex', '0008_yp_compatible'),
    ]

    operations = [
        migrations.AlterField(
            model_name='layerbranch',
            name='collection',
            field=models.CharField(help_text='Name of the collection that the layer provides for the purpose of expressing dependencies (as specified in BBFILE_COLLECTIONS). Can only contain letters, numbers and dashes.', max_length=40, blank=True, null=True, verbose_name='Layer Collection'),
        ),
    ]