Changed type of field from non-existant IntField to IntegerField

This commit is contained in:
Taizo 'Tsa6' Simpson 2017-09-21 16:51:16 -04:00
parent f2087f71ba
commit b7fc3628df

View File

@ -70,7 +70,7 @@ class Show(TimestampedModel):
) )
class User(TimestampedModel): class User(TimestampedModel):
user_id = models.IntField( user_id = models.IntegerField(
help_text='The user id assigned to this user by IcyNet\'s auth servers' help_text='The user id assigned to this user by IcyNet\'s auth servers'
) )
email = models.EmailField( email = models.EmailField(