Allow more than 255 characters for tokens in external_login_user tabl… (#8585)

* Allow more than 255 characters for tokens in external_login_user table (#8554)

Signed-off-by: Wenxuan Zhao <viz@linux.com>

* use old xorm repo
This commit is contained in:
6543
2019-10-19 06:54:09 +02:00
committed by Lunny Xiao
parent 4e85c8e0d8
commit 7565ac02c2
3 changed files with 24 additions and 3 deletions
+3 -3
View File
@@ -28,9 +28,9 @@ type ExternalLoginUser struct {
Description string
AvatarURL string
Location string
AccessToken string
AccessTokenSecret string
RefreshToken string
AccessToken string `xorm:"TEXT"`
AccessTokenSecret string `xorm:"TEXT"`
RefreshToken string `xorm:"TEXT"`
ExpiresAt time.Time
}