Files

29 lines
679 B
Go
Raw Permalink Normal View History

2021-04-14 14:02:12 +02:00
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2021-04-14 14:02:12 +02:00
2025-06-27 07:59:55 +02:00
package v1_15
2021-04-14 14:02:12 +02:00
import (
2022-11-02 16:54:36 +08:00
"code.gitea.io/gitea/models/migrations/base"
2021-04-14 14:02:12 +02:00
"xorm.io/xorm"
"xorm.io/xorm/schemas"
)
2022-11-02 16:54:36 +08:00
func ConvertAvatarURLToText(x *xorm.Engine) error {
2021-04-14 14:02:12 +02:00
dbType := x.Dialect().URI().DBType
if dbType == schemas.SQLITE { // For SQLITE, varchar or char will always be represented as TEXT
return nil
}
// Some oauth2 providers may give very long avatar urls (i.e. Google)
2022-11-02 16:54:36 +08:00
return base.ModifyColumn(x, "external_login_user", &schemas.Column{
2021-04-14 14:02:12 +02:00
Name: "avatar_url",
SQLType: schemas.SQLType{
Name: schemas.Text,
},
2022-06-05 03:18:50 +08:00
Nullable: true,
DefaultIsEmpty: true,
2021-04-14 14:02:12 +02:00
})
}