aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex/migrations/0003_auto_20161011_0304.py
blob: e0ccdff2b2b11c4258bbdf05dafc2aae3558c2a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('layerindex', '0002_distro'),
    ]

    operations = [
        migrations.AddField(
            model_name='layerbranch',
            name='collection',
            field=models.CharField(max_length=40, help_text='Name of the layer that could be used in the list of dependencies - can only contain letters, numbers and dashes', verbose_name='Layer Collection', null=True),
        ),
        migrations.AddField(
            model_name='layerbranch',
            name='version',
            field=models.CharField(max_length=10, blank=True, help_text='The layer version for this particular branch.', verbose_name='Layer Version', null=True),
        ),
    ]