Minor label models changes
This commit is contained in:
parent
bfe43fdc12
commit
52d5ca554b
28
label/migrations/0003_auto_20170818_1202.py
Normal file
28
label/migrations/0003_auto_20170818_1202.py
Normal 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),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue