Merge pull request #26 from IcyNet/fix-models

Changed type of field from non-existant IntField to IntegerField
This commit is contained in:
Tsa6 2017-09-21 17:32:05 -04:00 committed by GitHub
commit d408759486

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(