Add missing tag sorting migration
This commit is contained in:
19
mayan/apps/tags/migrations/0007_auto_20170118_1758.py
Normal file
19
mayan/apps/tags/migrations/0007_auto_20170118_1758.py
Normal file
@@ -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'},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user