outstanding migrations
[wolnelektury.git] / src / catalogue / migrations / 0011_auto_20160413_1152.py
diff --git a/src/catalogue/migrations/0011_auto_20160413_1152.py b/src/catalogue/migrations/0011_auto_20160413_1152.py
new file mode 100644 (file)
index 0000000..b344660
--- /dev/null
@@ -0,0 +1,18 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('catalogue', '0010_bookpopularity'),
+    ]
+
+    operations = [
+        migrations.AlterModelOptions(
+            name='book',
+            options={'ordering': ('sort_key_author', 'sort_key'), 'verbose_name': 'book', 'verbose_name_plural': 'books'},
+        ),
+    ]