Fundraising in PDF.
[wolnelektury.git] / src / club / migrations / 0010_auto_20190529_0946.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         ('club', '0009_auto_20190510_1510'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='schedule',
16             name='email_sent',
17             field=models.BooleanField(default=False),
18         ),
19         migrations.AlterField(
20             model_name='schedule',
21             name='method',
22             field=models.CharField(choices=[('payu', 'PayU'), ('payu-re', 'PayU (płatność odnawialna)')], max_length=255, verbose_name='method'),
23         ),
24     ]