aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/migrations/0007_merge.py
blob: 5d92f33619811d259f916eb7e81f493ff7598484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('orm', '0006_add_cancelled_state'),
        ('orm', '0006_remove_build_build_name'),
    ]

    operations = [
    ]