diff --git a/www/conservancy/apps/contacts/models.py b/www/conservancy/apps/contacts/models.py index bce1178c204d356af3fa8b23208ef274281cae3e..bc02a865855d97346661473a5ba33540c306fee7 100644 --- a/www/conservancy/apps/contacts/models.py +++ b/www/conservancy/apps/contacts/models.py @@ -1,13 +1,12 @@ from django.db import models class ContactEntry(models.Model): - """SFLC contact system + """Conservancy contact system Hopefully this will be deprecated soon""" email = models.EmailField() # should make it unique, but we really cannot - subscribe_sflc = models.BooleanField() - subscribe_sfc = models.BooleanField() + subscribe_conservancy = models.BooleanField() class Meta: ordering = ('email',)