aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py
blob: 11205969837fce8461302c3094639254374e9d5f (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 = [
        ('orm', '0004_merge'),
    ]

    operations = [
        migrations.AlterField(
            model_name='customimagerecipe',
            name='recipe_ptr',
            field=models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='orm.Recipe'),
        ),
    ]