mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-03-04 11:01:07 +00:00
Add migration to fix zero forge_id in orgs table
This commit is contained in:
parent
a3cc61b715
commit
a24e54bae2
5 changed files with 31 additions and 2 deletions
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
},
|
||||
}
|
|
@ -52,7 +52,8 @@ var migrationTasks = []*xormigrate.Migration{
|
|||
&renameTokenFields,
|
||||
&setNewDefaultsForRequireApproval,
|
||||
&removeRepoScm,
|
||||
&unSanitizeOrgAndUserNames,
|
||||
&unsanitizeOrgAndUserNames,
|
||||
&replaceZeroForgeIDsInOrgs,
|
||||
}
|
||||
|
||||
var allBeans = []any{
|
||||
|
|
Loading…
Reference in a new issue