summaryrefslogtreecommitdiffstats
path: root/poky/bitbake/lib/toaster/bldcontrol/migrations/0007_brlayers_optional_gitinfo.py
blob: 4be42a4cf932ef64039bc930b86e3a8e9498ec43 (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
25
26
27
28
29
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('bldcontrol', '0006_brlayer_local_source_dir'),
    ]

    operations = [
        migrations.AlterField(
            model_name='brlayer',
            name='commit',
            field=models.CharField(max_length=254, null=True),
        ),
        migrations.AlterField(
            model_name='brlayer',
            name='dirpath',
            field=models.CharField(max_length=254, null=True),
        ),
        migrations.AlterField(
            model_name='brlayer',
            name='giturl',
            field=models.CharField(max_length=254, null=True),
        ),
    ]
OpenPOWER on IntegriCloud