From 05eafbe18c68166529b2d86e28c399bb82d45bad Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 18 Jan 2017 14:02:26 -0400 Subject: [PATCH] Add missing tag sorting migration --- .../migrations/0007_auto_20170118_1758.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mayan/apps/tags/migrations/0007_auto_20170118_1758.py diff --git a/mayan/apps/tags/migrations/0007_auto_20170118_1758.py b/mayan/apps/tags/migrations/0007_auto_20170118_1758.py new file mode 100644 index 0000000000..cb71a36494 --- /dev/null +++ b/mayan/apps/tags/migrations/0007_auto_20170118_1758.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-01-18 17:58 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('tags', '0006_documenttag'), + ] + + operations = [ + migrations.AlterModelOptions( + name='tag', + options={'ordering': ('label',), 'verbose_name': 'Tag', 'verbose_name_plural': 'Tags'}, + ), + ]