summaryrefslogtreecommitdiff
path: root/app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py
blob: 7c876fde932bf68ecb7acd640fe0f01fd81d9bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Generated by Django 5.0.4 on 2024-12-08 11:21

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('lttr', '0024_postcardsubscriber_postcards_sent'),
    ]

    operations = [
        migrations.AddField(
            model_name='postcardsubscriber',
            name='postcard_sent',
            field=models.BooleanField(default=False),
        ),
    ]