Fundraising in PDF.
[wolnelektury.git] / src / funding / migrations / 0003_auto_20180416_1336.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('funding', '0002_auto_20151221_1225'),
11     ]
12
13     operations = [
14         migrations.AlterModelOptions(
15             name='funding',
16             options={'ordering': ['-payed_at', 'pk'], 'verbose_name': 'funding', 'verbose_name_plural': 'fundings'},
17         ),
18     ]