2019-10-18 08:58:36 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-10-18 08:58:36 +02:00
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
package v1_10 //nolint
|
2019-10-18 08:58:36 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 09:54:36 +01:00
|
|
|
func ChangeSomeColumnsLengthOfExternalLoginUser(x *xorm.Engine) error {
|
2019-10-18 08:58:36 +02:00
|
|
|
type ExternalLoginUser struct {
|
|
|
|
AccessToken string `xorm:"TEXT"`
|
|
|
|
AccessTokenSecret string `xorm:"TEXT"`
|
|
|
|
RefreshToken string `xorm:"TEXT"`
|
|
|
|
}
|
|
|
|
|
|
|
|
return x.Sync2(new(ExternalLoginUser))
|
|
|
|
}
|