1
0
Fork 0

Minor label models changes

This commit is contained in:
Dece 2017-08-18 12:03:19 +02:00
parent bfe43fdc12
commit 52d5ca554b

View file

@ -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),
),
]