Skip to content

Commit

Permalink
Change container sort order as part of #737.
Browse files Browse the repository at this point in the history
  • Loading branch information
donkirkby committed Aug 10, 2018
1 parent d2ace95 commit 920d859
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions kive/container/migrations/0003_reverse_ordering.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.13 on 2018-08-10 22:19
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('container', '0002_ordering'),
]

operations = [
migrations.AlterModelOptions(
name='container',
options={'ordering': ['family__name', '-tag']},
),
]

0 comments on commit 920d859

Please sign in to comment.