diff options
Diffstat (limited to 'app/lttr/models.py')
-rw-r--r-- | app/lttr/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/lttr/models.py b/app/lttr/models.py index 0a9fdc7..5519ff6 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -480,6 +480,7 @@ class PostcardSubscriber(models.Model): address = models.TextField() name = models.CharField(max_length=120) postcards_sent = models.PositiveIntegerField(default=0) + postcard_sent = models.BooleanField(default=False) def __str__(self): return self.name |