Add naming/sorting changes.
This commit is contained in:
parent
00dd697aca
commit
45b98fe1d7
1 changed files with 29 additions and 0 deletions
29
savepointradio/radio/migrations/0002_naming_and_sorting.py
Normal file
29
savepointradio/radio/migrations/0002_naming_and_sorting.py
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
# Generated by Django 2.0 on 2018-01-18 17:36
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('radio', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='album',
|
||||||
|
options={'ordering': ['sorted_title']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='artist',
|
||||||
|
options={'ordering': ['sorted_full_name']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='game',
|
||||||
|
options={'ordering': ['sorted_title']},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='song',
|
||||||
|
options={'ordering': ['sorted_title']},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue