From a8fbd82b0a49aff9d86af81096f109049af67c9c Mon Sep 17 00:00:00 2001 From: Taizo 'Tsa6' Simpson Date: Sat, 26 Aug 2017 15:08:14 -0400 Subject: [PATCH] Updated User model --- LandingPage/models.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/LandingPage/models.py b/LandingPage/models.py index edb82be..e36a055 100644 --- a/LandingPage/models.py +++ b/LandingPage/models.py @@ -70,10 +70,11 @@ class Show(TimestampedModel): ) class User(TimestampedModel): - auth_token=models.CharField( - max_length=16, - help_text="User's authentication token from IcyNet's auth system", - verbose_name="IcyNet Auth Token" + user_id = models.IntField( + help_text='The user id assigned to this user by IcyNet\'s auth servers' + ) + email = models.EmailField( + help_text='This user\'s email address' ) display_name=models.CharField( max_length=20,