From b51478582f17bc9c43a92232e41246aec3e89f36 Mon Sep 17 00:00:00 2001 From: Elliot Smith Date: Mon, 18 Jan 2016 10:55:16 +0000 Subject: [PATCH] bitbake: toaster: update customimagerecipe migration When applying migrations, Django shows this warning: "Your models have changes that are not yet reflected in a migration, and so won't be applied." This is because the customimagerecipe model has changed, but those changes are not covered by a migration. Add the missing migration to clear this warning. (Bitbake rev: df8185fcbd84061976d91b03b2a9268b319a6184) Signed-off-by: Elliot Smith Signed-off-by: brian avery Signed-off-by: Richard Purdie --- .../orm/migrations/0005_auto_20160118_1055.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py 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 @@ +# -*- 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'), + ), + ]