summaryrefslogtreecommitdiff
path: root/yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py')
-rw-r--r--yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py24
1 files changed, 0 insertions, 24 deletions
diff --git a/yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py b/yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py
deleted file mode 100644
index 9cec82e8d..000000000
--- a/yocto-poky/bitbake/lib/toaster/orm/migrations/0002_customimagerecipe.py
+++ /dev/null
@@ -1,24 +0,0 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
-from django.db import migrations, models
-
-
-class Migration(migrations.Migration):
-
- dependencies = [
- ('orm', '0001_initial'),
- ]
-
- operations = [
- migrations.CreateModel(
- name='CustomImageRecipe',
- fields=[
- ('recipe_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='orm.Recipe')),
- ('last_updated', models.DateTimeField(default=None, null=True)),
- ('base_recipe', models.ForeignKey(related_name='based_on_recipe', to='orm.Recipe')),
- ('project', models.ForeignKey(to='orm.Project')),
- ],
- bases=('orm.recipe',),
- ),
- ]