aboutsummaryrefslogtreecommitdiffstats
path: root/Post/migrations/0005_build_error_type.py
blob: 5061cbe9d379f95d46fa2474e0a5da24b3b41c53 (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 = [
        ('Post', '0004_auto_20160530_1126'),
    ]

    operations = [
        migrations.AddField(
            model_name='build',
            name='ERROR_TYPE',
            field=models.CharField(default=b'recipe', max_length=20, choices=[(b'recipe', b'Recipe'), (b'core', b'Core'), (b'bitbake-selftest', b'Bitbake selftest'), (b'oe-selftest', b'OE selftest')]),
        ),
    ]