summaryrefslogtreecommitdiff
path: root/pgcommitfest/userprofile/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgcommitfest/userprofile/models.py')
-rw-r--r--pgcommitfest/userprofile/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pgcommitfest/userprofile/models.py b/pgcommitfest/userprofile/models.py
index 367e0bd..759df48 100644
--- a/pgcommitfest/userprofile/models.py
+++ b/pgcommitfest/userprofile/models.py
@@ -1,6 +1,7 @@
from django.db import models
from django.contrib.auth.models import User
+
class UserExtraEmail(models.Model):
user = models.ForeignKey(User, null=False, blank=False, db_index=True)
email = models.EmailField(max_length=100, null=False, blank=False, unique=True)