Updated User model to match changes in IcyNet (User id [int] --> UUIDv4 [varchar])
This commit is contained in:
parent
49e508f4ad
commit
ba0d572cb1
@ -70,8 +70,9 @@ class Show(TimestampedModel):
|
|||||||
)
|
)
|
||||||
|
|
||||||
class User(TimestampedModel):
|
class User(TimestampedModel):
|
||||||
user_id = models.IntegerField(
|
user_id = models.CharField(
|
||||||
help_text='The user id assigned to this user by IcyNet\'s auth servers'
|
max_length=36,
|
||||||
|
help_text='The UUID assigned to this user by IcyNet\'s auth servers'
|
||||||
)
|
)
|
||||||
email = models.EmailField(
|
email = models.EmailField(
|
||||||
help_text='This user\'s email address'
|
help_text='This user\'s email address'
|
||||||
|
Reference in New Issue
Block a user