Add migration to fix zero forge_id in orgs table

This commit is contained in:
Robert Kaussow 2025-03-03 20:40:30 +01:00
parent a3cc61b715
commit a24e54bae2
No known key found for this signature in database
GPG key ID: 4E692A2EAECC03C0
5 changed files with 31 additions and 2 deletions

View file

@ -22,7 +22,7 @@ import (
"xorm.io/xorm"
)
var unSanitizeOrgAndUserNames = xormigrate.Migration{
var unsanitizeOrgAndUserNames = xormigrate.Migration{
ID: "unsanitize-org-and-user-names",
MigrateSession: func(sess *xorm.Session) (err error) {
type user struct {

View file

@ -0,0 +1,28 @@
// Copyright 2024 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
},
}

View file

@ -52,7 +52,8 @@ var migrationTasks = []*xormigrate.Migration{
&renameTokenFields,
&setNewDefaultsForRequireApproval,
&removeRepoScm,
&unSanitizeOrgAndUserNames,
&unsanitizeOrgAndUserNames,
&replaceZeroForgeIDsInOrgs,
}
var allBeans = []any{