Fundraising in PDF.
[wolnelektury.git] / src / push / migrations / 0001_initial.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     ]
11
12     operations = [
13         migrations.CreateModel(
14             name='Notification',
15             fields=[
16                 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
17                 ('timestamp', models.DateTimeField(auto_now_add=True)),
18                 ('title', models.CharField(max_length=256)),
19                 ('body', models.CharField(max_length=2048)),
20                 ('image_url', models.URLField()),
21                 ('message_id', models.CharField(max_length=2048)),
22             ],
23         ),
24     ]