From b1c5b15ae8e80c284369256a306aba7ae99b6133 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Thu, 9 Mar 2017 08:55:48 +1300 Subject: [PATCH] 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 --- .../migrations/0006_change_branch_meta.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 layerindex/migrations/0006_change_branch_meta.py diff --git a/layerindex/migrations/0006_change_branch_meta.py b/layerindex/migrations/0006_change_branch_meta.py new file mode 100644 index 0000000..8a9dc43 --- /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']}, + ), + ]