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

View File

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