diff options
author | Jack Morgan <jack.morgan@intel.com> | 2017-12-14 01:18:58 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-14 01:18:58 +0000 |
commit | e0edcd4c99f6bcdda93c198a1e5829d1e929e0ec (patch) | |
tree | 9840f0616b3768711ddb3109bce5c5756748f46e /src/account/models.py | |
parent | 1b9e76a483822a830a1b67acb817467ee907b93c (diff) | |
parent | 9742d5a8d6ee629e99581dc69c491a04f6a2f2ac (diff) |
Merge "Integrate Initial Email Support"
Diffstat (limited to 'src/account/models.py')
-rw-r--r-- | src/account/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/account/models.py b/src/account/models.py index c2e9902..bfc0bbe 100644 --- a/src/account/models.py +++ b/src/account/models.py @@ -20,6 +20,7 @@ class UserProfile(models.Model): timezone = models.CharField(max_length=100, blank=False, default='UTC') ssh_public_key = models.FileField(upload_to=upload_to, null=True, blank=True) pgp_public_key = models.FileField(upload_to=upload_to, null=True, blank=True) + email_addr = models.CharField(max_length=300, blank=false, default='email@mail.com') company = models.CharField(max_length=200, blank=False) oauth_token = models.CharField(max_length=1024, blank=False) |