Updated User model
This commit is contained in:
parent
1f81e5a6f6
commit
a8fbd82b0a
@ -70,10 +70,11 @@ class Show(TimestampedModel):
|
|||||||
)
|
)
|
||||||
|
|
||||||
class User(TimestampedModel):
|
class User(TimestampedModel):
|
||||||
auth_token=models.CharField(
|
user_id = models.IntField(
|
||||||
max_length=16,
|
help_text='The user id assigned to this user by IcyNet\'s auth servers'
|
||||||
help_text="User's authentication token from IcyNet's auth system",
|
)
|
||||||
verbose_name="IcyNet Auth Token"
|
email = models.EmailField(
|
||||||
|
help_text='This user\'s email address'
|
||||||
)
|
)
|
||||||
display_name=models.CharField(
|
display_name=models.CharField(
|
||||||
max_length=20,
|
max_length=20,
|
||||||
|
Reference in New Issue
Block a user