summaryrefslogtreecommitdiff
path: root/app/lttr/migrations/0022_postcardsubscriber.py
blob: 965bc8102e265ab3a747bb8e821eb3368d2c8406 (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 3.2.7 on 2021-10-28 21:51

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('lttr', '0021_auto_20210324_1352'),
    ]

    operations = [
        migrations.CreateModel(
            name='PostcardSubscriber',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('date_created', models.DateTimeField(auto_now_add=True)),
                ('date_updated', models.DateTimeField(auto_now=True)),
                ('address', models.TextField()),
                ('name', models.CharField(max_length=120)),
            ],
        ),
    ]