diff options
author | luxagraf <sng@luxagraf.net> | 2023-12-11 16:26:25 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-12-11 16:26:25 -0500 |
commit | 15bb502dd3147d8ad96cc40f7cbc0e4c2cb68d11 (patch) | |
tree | 87f6b60ceb21e2f4e03ceefef94e22f5568f90b4 /app/lttr/migrations | |
parent | 800008d24cecec37594b089936af2f9b2a03aecc (diff) |
lttr: added date and postcards sent fields
Diffstat (limited to 'app/lttr/migrations')
-rw-r--r-- | app/lttr/migrations/0024_postcardsubscriber_postcards_sent.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/lttr/migrations/0024_postcardsubscriber_postcards_sent.py b/app/lttr/migrations/0024_postcardsubscriber_postcards_sent.py new file mode 100644 index 0000000..f5e5fe4 --- /dev/null +++ b/app/lttr/migrations/0024_postcardsubscriber_postcards_sent.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-12-11 16:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('lttr', '0023_alter_newslettermailing_options_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='postcardsubscriber', + name='postcards_sent', + field=models.PositiveIntegerField(default=0), + ), + ] |