Updated User model

This commit is contained in:
Taizo 'Tsa6' Simpson 2017-08-26 15:08:14 -04:00
parent 1f81e5a6f6
commit a8fbd82b0a
1 changed files with 5 additions and 4 deletions

View File

@ -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,