Fundraising in PDF.
[wolnelektury.git] / src / isbn / migrations / 0003_isbnpool_purpose.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         ('isbn', '0002_auto_20180213_1617'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='isbnpool',
16             name='purpose',
17             field=models.CharField(default='', max_length=4, choices=[('WL', 'Wolne Lektury'), ('FNP', 'Fundacja Nowoczesna Polska')]),
18             preserve_default=False,
19         ),
20     ]