better ordering of fundings
[wolnelektury.git] / src / funding / migrations / 0003_auto_20180416_1336.py
diff --git a/src/funding/migrations/0003_auto_20180416_1336.py b/src/funding/migrations/0003_auto_20180416_1336.py
new file mode 100644 (file)
index 0000000..94485d7
--- /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 = [
+        ('funding', '0002_auto_20151221_1225'),
+    ]
+
+    operations = [
+        migrations.AlterModelOptions(
+            name='funding',
+            options={'ordering': ['-payed_at', 'pk'], 'verbose_name': 'funding', 'verbose_name_plural': 'fundings'},
+        ),
+    ]