Keep track of email consent.

This commit is contained in:
Drew Larson
2016-04-03 19:38:47 -06:00
parent b19c2f7073
commit 49e98929b0
2 changed files with 21 additions and 0 deletions
+1
View File
@@ -44,6 +44,7 @@ class Member(AbstractBaseUser, PermissionsMixin):
max_length=255,
unique=True,
)
email_consent = models.BooleanField(default=False)
first_name = models.CharField(max_length=255, null=False)
last_name = models.CharField(max_length=255, null=False)
preferred_name = models.CharField(max_length=255, null=True, blank=True)