diff --git a/conservancy/contacts/models.py b/conservancy/contacts/models.py index 14ac74848d12e310d4ab824e8337b1c65810fccd..58e89a75abb655072e7b663fb004f8eb8d3a6587 100644 --- a/conservancy/contacts/models.py +++ b/conservancy/contacts/models.py @@ -1,14 +1,9 @@ from django.db import models -class ContactEntry(models.Model): - """Conservancy contact system - - Hopefully this will be deprecated soon""" - - email = models.EmailField() # should make it unique, but we really cannot - subscribe_conservancy = models.BooleanField(default=False) +class Unsubscription(models.Model): + created = models.DateTimeField(auto_now_add=True, blank=True) + email = models.EmailField() class Meta: - ordering = ('email',) - + ordering = ['created']