43ac385328c45200d03d67043747b394c300e1c8
[wolnelektury.git] / src / catalogue / migrations / 0011_auto_20160413_1152.py
1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
3 #
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('catalogue', '0010_bookpopularity'),
11     ]
12
13     operations = [
14         migrations.AlterModelOptions(
15             name='book',
16             options={'ordering': ('sort_key_author', 'sort_key'), 'verbose_name': 'book', 'verbose_name_plural': 'books'},
17         ),
18     ]