Added a migration which captures the ordering on Role.
- Legacy-Id: 12938
This commit is contained in:
parent
ae8e07ef22
commit
cbc0e72fee
19
ietf/group/migrations/0011_auto_20170301_0332.py
Normal file
19
ietf/group/migrations/0011_auto_20170301_0332.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.10.5 on 2017-03-01 03:32
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('group', '0010_iab_programs'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='role',
|
||||
options={'ordering': ['name_id']},
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue