blob: b027f661375dfa9a08c7eafb1fafff8d78439d1f [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6
7class Migration(migrations.Migration):
8
9 dependencies = [
10 ('orm', '0002_customimagerecipe'),
11 ]
12
13 operations = [
14 migrations.CreateModel(
15 name='CustomImagePackage',
16 fields=[
17 ('package_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='orm.Package')),
18 ('recipe_appends', models.ManyToManyField(related_name='appends_set', to='orm.CustomImageRecipe')),
19 ('recipe_excludes', models.ManyToManyField(related_name='excludes_set', to='orm.CustomImageRecipe')),
20 ('recipe_includes', models.ManyToManyField(related_name='includes_set', to='orm.CustomImageRecipe')),
21 ],
22 bases=('orm.package',),
23 ),
24 ]