aboutsummaryrefslogtreecommitdiffstats
path: root/layerindex
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-09 08:55:48 +1300
committerPaul Eggleton <paul.eggleton@linux.intel.com>2017-03-14 15:14:09 +1300
commitb1c5b15ae8e80c284369256a306aba7ae99b6133 (patch)
tree294bd3b1a6256ecf100851fc86c1f362e77a47bc /layerindex
parentb91b09a0aec11c0f8ee0cb99aa4ec81be9d23ddc (diff)
downloadopenembedded-core-contrib-b1c5b15ae8e80c284369256a306aba7ae99b6133.tar.gz
migrations: add missing migration for branch meta change
The branch meta change made in b91b09a0aec11c0f8ee0cb99aa4ec81be9d23ddc apparently requires this migration - not entirely sure why, but Django's manage.py makemigrations wants to create it. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'layerindex')
-rw-r--r--layerindex/migrations/0006_change_branch_meta.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/layerindex/migrations/0006_change_branch_meta.py b/layerindex/migrations/0006_change_branch_meta.py
new file mode 100644
index 0000000000..8a9dc4353b
--- /dev/null
+++ b/layerindex/migrations/0006_change_branch_meta.py
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('layerindex', '0005_layerupdate'),
+ ]
+
+ operations = [
+ migrations.AlterModelOptions(
+ name='branch',
+ options={'verbose_name_plural': 'Branches', 'ordering': ['sort_priority']},
+ ),
+ ]