Merge pull request #26 from IcyNet/fix-models
Changed type of field from non-existant IntField to IntegerField
This commit is contained in:
commit
d408759486
@ -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(
|
||||||
|
Reference in New Issue
Block a user