Updated User model to match changes in IcyNet (User id [int] --> UUIDv4 [varchar])

This commit is contained in:
Taizo 'Tsa6' Simpson 2017-09-22 17:45:17 -04:00
parent 49e508f4ad
commit ba0d572cb1
1 changed files with 3 additions and 2 deletions

View File

@ -70,8 +70,9 @@ class Show(TimestampedModel):
)
class User(TimestampedModel):
user_id = models.IntegerField(
help_text='The user id assigned to this user by IcyNet\'s auth servers'
user_id = models.CharField(
max_length=36,
help_text='The UUID assigned to this user by IcyNet\'s auth servers'
)
email = models.EmailField(
help_text='This user\'s email address'