From 52d5ca554b210ef19a2199c7dbc77c1a860cf6c4 Mon Sep 17 00:00:00 2001 From: Dece Date: Fri, 18 Aug 2017 12:03:19 +0200 Subject: [PATCH] Minor label models changes --- label/migrations/0003_auto_20170818_1202.py | 28 +++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 label/migrations/0003_auto_20170818_1202.py diff --git a/label/migrations/0003_auto_20170818_1202.py b/label/migrations/0003_auto_20170818_1202.py new file mode 100644 index 0000000..bafd1c5 --- /dev/null +++ b/label/migrations/0003_auto_20170818_1202.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-08-18 10:02 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('label', '0002_videoclip'), + ] + + operations = [ + migrations.AlterModelOptions( + name='release', + options={'ordering': ('-ident',)}, + ), + migrations.AlterModelOptions( + name='videoclip', + options={'ordering': ('-year', 'title')}, + ), + migrations.AlterField( + model_name='release', + name='ident', + field=models.IntegerField(unique=True), + ), + ]