diff options
author | luxagraf <sng@luxagraf.net> | 2024-12-08 10:24:19 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2024-12-08 10:24:19 -0600 |
commit | 05b386315c09c735201566cf8945fc8ff78d2741 (patch) | |
tree | 9d12ef1a1abbb01d5ffa27832833bc5c7b3ac444 /app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py | |
parent | de5451cd00ff0c9c18fe03c1f2fc952850f36bc0 (diff) |
lttr: improved postcard admin
Diffstat (limited to 'app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py')
-rw-r--r-- | app/lttr/migrations/0025_postcardsubscriber_postcard_sent.py | 18 |
1 files changed, 18 insertions, 0 deletions
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), + ), + ] |