Added a migration to capture the ordering option on Nominee.
- Legacy-Id: 12801
This commit is contained in:
parent
0c784f9976
commit
c7ec188d3f
19
ietf/nomcom/migrations/0012_auto_20170210_0205.py
Normal file
19
ietf/nomcom/migrations/0012_auto_20170210_0205.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.12 on 2017-02-10 02:05
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('nomcom', '0011_auto_20161207_1046'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='nominee',
|
||||
options={'ordering': ['-nomcom__group__acronym', 'email__address'], 'verbose_name_plural': 'Nominees'},
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue