1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-19 15:26:09 +02:00
gitea/models/migrations/v1_18/v230.go
2024-04-23 03:00:57 +00:00

18 lines
496 B
Go

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_18 //nolint
import (
"xorm.io/xorm"
)
// AddConfidentialColumnToOAuth2ApplicationTable: add ConfidentialClient column, setting existing rows to true
func AddConfidentialClientColumnToOAuth2ApplicationTable(x *xorm.Engine) error {
type oauth2Application struct {
ID int64
ConfidentialClient bool `xorm:"NOT NULL DEFAULT TRUE"`
}
return x.Sync(new(oauth2Application))
}