Switch the data to a textfield for authorization codes.
This commit is contained in:
parent
5f98bf8dab
commit
afb3a67b7b
2 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ class OAuthAuthorizationCode(BaseModel):
|
|||
application = ForeignKeyField(OAuthApplication)
|
||||
code = CharField(index=True)
|
||||
scope = CharField()
|
||||
data = CharField() # Context for the code, such as the user
|
||||
data = TextField() # Context for the code, such as the user
|
||||
|
||||
|
||||
class OAuthAccessToken(BaseModel):
|
||||
|
|
Binary file not shown.
Reference in a new issue