aboutsummaryrefslogtreecommitdiffstats
path: root/src/notifier/migrations/0007_email.py
blob: aaac048a021c62cda4472da858646c668a183d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 2.2 on 2020-12-09 20:02

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifier', '0006_emailed'),
    ]

    operations = [
        migrations.CreateModel(
            name='Email',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('sent', models.BooleanField(default=False)),
                ('title', models.CharField(max_length=150)),
                ('message', models.TextField()),
                ('recipient', models.CharField(max_length=150)),
            ],
        ),
    ]