Added a migration which captures the ordering on Role.

- Legacy-Id: 12938
This commit is contained in:
Henrik Levkowetz 2017-03-01 11:33:42 +00:00
parent ae8e07ef22
commit cbc0e72fee

View 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']},
),
]