migrations: add missing migration for branch meta change

The branch meta change made in b91b09a0ae
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>
This commit is contained in:
Paul Eggleton 2017-03-09 08:55:48 +13:00
parent b91b09a0ae
commit b1c5b15ae8

View File

@ -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']},
),
]