Collections ordering
This commit is contained in:
parent
f630cd9e11
commit
e7c384ed5f
1 changed files with 18 additions and 0 deletions
|
@ -0,0 +1,18 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('collections_ccdb', '0002_collection_display_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='collection',
|
||||
options={'ordering': ['project', 'collection_end_date']},
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue