summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorElliot Smith <elliot.smith@intel.com>2016-01-18 10:55:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-10 13:29:20 +0000
commitb51478582f17bc9c43a92232e41246aec3e89f36 (patch)
tree59d6acc57ea07a5ad24a13160261745baf08ebc2 /bitbake
parentdf58f5b70bc725b94ffb49375cd63078015b6b17 (diff)
downloadpoky-b51478582f17bc9c43a92232e41246aec3e89f36.tar.gz
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 <elliot.smith@intel.com> Signed-off-by: brian avery <avery.brian@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/orm/migrations/0005_auto_20160118_1055.py19
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 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6
7class 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 ]