add skip secondary authorization option for public oauth2 clients (#31454) (migration v301)

(cherry picked from commit a8d0c879c38e21a8e78db627119bf622d919ee75)
This commit is contained in:
Denys Konovalov 2024-07-19 14:28:30 -04:00 committed by Earl Warren
parent ee8f3e09f8
commit 5734499778
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 16 additions and 0 deletions

View file

@ -595,6 +595,8 @@ var migrations = []Migration{
NewMigration("Add content version to issue and comment table", v1_23.AddContentVersionToIssueAndComment),
// v300 -> v301
NewMigration("Add force-push branch protection support", v1_23.AddForcePushBranchProtection),
// v301 -> v302
NewMigration("Add skip_secondary_authorization option to oauth2 application table", v1_23.AddSkipSecondaryAuthColumnToOAuth2ApplicationTable),
}
// GetCurrentDBVersion returns the current db version

View file

@ -0,0 +1,14 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_23 //nolint
import "xorm.io/xorm"
// AddSkipSeconderyAuthToOAuth2ApplicationTable: add SkipSecondaryAuthorization column, setting existing rows to false
func AddSkipSecondaryAuthColumnToOAuth2ApplicationTable(x *xorm.Engine) error {
type oauth2Application struct {
SkipSecondaryAuthorization bool `xorm:"NOT NULL DEFAULT FALSE"`
}
return x.Sync(new(oauth2Application))
}