mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-09-03 20:53:49 +00:00
Add migration to fix zero forge_id in orgs table (#4924)
This commit is contained in:
parent
a3cc61b715
commit
780f838578
5 changed files with 31 additions and 2 deletions
|
@ -22,7 +22,7 @@ import (
|
||||||
"xorm.io/xorm"
|
"xorm.io/xorm"
|
||||||
)
|
)
|
||||||
|
|
||||||
var unSanitizeOrgAndUserNames = xormigrate.Migration{
|
var unsanitizeOrgAndUserNames = xormigrate.Migration{
|
||||||
ID: "unsanitize-org-and-user-names",
|
ID: "unsanitize-org-and-user-names",
|
||||||
MigrateSession: func(sess *xorm.Session) (err error) {
|
MigrateSession: func(sess *xorm.Session) (err error) {
|
||||||
type user struct {
|
type user struct {
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
// Copyright 2025 Woodpecker Authors
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package migration
|
||||||
|
|
||||||
|
import (
|
||||||
|
"src.techknowlogick.com/xormigrate"
|
||||||
|
"xorm.io/xorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
var replaceZeroForgeIDsInOrgs = xormigrate.Migration{
|
||||||
|
ID: "replace-zero-forge-ids-in-orgs",
|
||||||
|
MigrateSession: func(sess *xorm.Session) (err error) {
|
||||||
|
_, err = sess.Exec("UPDATE orgs SET forge_id=1 WHERE forge_id=0;")
|
||||||
|
return err
|
||||||
|
},
|
||||||
|
}
|
|
@ -52,7 +52,8 @@ var migrationTasks = []*xormigrate.Migration{
|
||||||
&renameTokenFields,
|
&renameTokenFields,
|
||||||
&setNewDefaultsForRequireApproval,
|
&setNewDefaultsForRequireApproval,
|
||||||
&removeRepoScm,
|
&removeRepoScm,
|
||||||
&unSanitizeOrgAndUserNames,
|
&unsanitizeOrgAndUserNames,
|
||||||
|
&replaceZeroForgeIDsInOrgs,
|
||||||
}
|
}
|
||||||
|
|
||||||
var allBeans = []any{
|
var allBeans = []any{
|
||||||
|
|
Loading…
Reference in a new issue