diff options
| -rw-r--r-- | bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py b/bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py new file mode 100644 index 0000000000..1120596983 --- /dev/null +++ b/bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | # -*- coding: utf-8 -*- | ||
| 2 | from __future__ import unicode_literals | ||
| 3 | |||
| 4 | from django.db import migrations, models | ||
| 5 | |||
| 6 | |||
| 7 | class Migration(migrations.Migration): | ||
| 8 | |||
| 9 | dependencies = [ | ||
| 10 | ('orm', '0004_merge'), | ||
| 11 | ] | ||
| 12 | |||
| 13 | operations = [ | ||
| 14 | migrations.AlterField( | ||
| 15 | model_name='customimagerecipe', | ||
| 16 | name='recipe_ptr', | ||
| 17 | field=models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='orm.Recipe'), | ||
| 18 | ), | ||
| 19 | ] | ||
