Migration for changed default sort order for nominees.
- Legacy-Id: 15535
This commit is contained in:
parent
b984422471
commit
7ac1556fbf
19
ietf/nomcom/migrations/0005_auto_20181008_0602.py
Normal file
19
ietf/nomcom/migrations/0005_auto_20181008_0602.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.16 on 2018-10-08 06:02
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('nomcom', '0004_set_show_accepted_nominees_false_on_existing_nomcoms'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='nominee',
|
||||
options={'ordering': ['-nomcom__group__acronym', 'person__name'], 'verbose_name_plural': 'Nominees'},
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue