Skip to content

Commit cbc0e72

Browse files
committed
Added a migration which captures the ordering on Role.
- Legacy-Id: 12938
1 parent ae8e07e commit cbc0e72

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.5 on 2017-03-01 03:32
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('group', '0010_iab_programs'),
12+
]
13+
14+
operations = [
15+
migrations.AlterModelOptions(
16+
name='role',
17+
options={'ordering': ['name_id']},
18+
),
19+
]

0 commit comments

Comments
 (0)