summaryrefslogtreecommitdiffstats
path: root/bitbake/bitbake/lib/toaster/bldcontrol/migrations/0004_auto_20160509_0946.py
blob: 4a70e2d8e8b2c79280a30813b9d78a6fa25645c1 (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
30
31
32
33
34
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('bldcontrol', '0003_add_cancelling_state'),
    ]

    operations = [
        migrations.AlterField(
            model_name='buildenvironment',
            name='bbstate',
            field=models.IntegerField(choices=[(0, 'stopped'), (1, 'started')], default=0),
        ),
        migrations.AlterField(
            model_name='buildenvironment',
            name='betype',
            field=models.IntegerField(choices=[(0, 'local')]),
        ),
        migrations.AlterField(
            model_name='buildenvironment',
            name='lock',
            field=models.IntegerField(choices=[(0, 'free'), (1, 'lock'), (2, 'running')], default=0),
        ),
        migrations.AlterField(
            model_name='buildrequest',
            name='state',
            field=models.IntegerField(choices=[(0, 'created'), (1, 'queued'), (2, 'in progress'), (3, 'completed'), (4, 'failed'), (5, 'deleted'), (6, 'cancelling'), (7, 'archive')], default=0),
        ),
    ]