Fundraising in PDF.
[wolnelektury.git] / src / push / migrations / 0003_auto_20180831_1135.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         ('push', '0002_auto_20180830_1627'),
11     ]
12
13     operations = [
14         migrations.AlterField(
15             model_name='notification',
16             name='image',
17             field=models.ImageField(upload_to='push/img', verbose_name='image', blank=True),
18         ),
19     ]