diff --git a/www/conservancy/apps/contacts/models.py b/www/conservancy/apps/contacts/models.py new file mode 100644 index 0000000000000000000000000000000000000000..bce1178c204d356af3fa8b23208ef274281cae3e --- /dev/null +++ b/www/conservancy/apps/contacts/models.py @@ -0,0 +1,14 @@ +from django.db import models + +class ContactEntry(models.Model): + """SFLC 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() + + class Meta: + ordering = ('email',) +