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 76a3872..0a9fdc7 100644 --- a/app/lttr/models.py +++ b/app/lttr/models.py @@ -479,6 +479,7 @@ class PostcardSubscriber(models.Model): date_updated = models.DateTimeField(blank=True, auto_now=True, editable=False) address = models.TextField() name = models.CharField(max_length=120) + postcards_sent = models.PositiveIntegerField(default=0) def __str__(self): return self.name |