From 05b386315c09c735201566cf8945fc8ff78d2741 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sun, 8 Dec 2024 10:24:19 -0600 Subject: lttr: improved postcard admin --- .../0025_postcardsubscriber_postcard_sent.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py (limited to 'app/lttr/migrations') diff --git a/app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py b/app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py new file mode 100644 index 0000000..7c876fd --- /dev/null +++ b/app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py @@ -0,0 +1,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), + ), + ] -- cgit v1.2.3-70-g09d2