mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-25 20:40:02 +02:00
Migrations should never use model structs directly, because the model structs can be different in different releases. e.g. if one migration uses "User" model, it works in the early releases, then one day, when the User model changes, the migration breaks because it will use the new (incorrect) User model, it should only use the old User model. The same to "modules/structs". --------- Signed-off-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
46 lines
1.1 KiB
Go
46 lines
1.1 KiB
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_26
|
|
|
|
import (
|
|
"gitea.dev/modelmigration/base"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func AddActionsConcurrency(x base.EngineMigration) error {
|
|
type ActionRun struct {
|
|
RepoID int64 `xorm:"index(repo_concurrency)"`
|
|
RawConcurrency string
|
|
ConcurrencyGroup string `xorm:"index(repo_concurrency) NOT NULL DEFAULT ''"`
|
|
ConcurrencyCancel bool `xorm:"NOT NULL DEFAULT FALSE"`
|
|
}
|
|
|
|
if _, err := x.SyncWithOptions(xorm.SyncOptions{
|
|
IgnoreDropIndices: true,
|
|
}, new(ActionRun)); err != nil {
|
|
return err
|
|
}
|
|
|
|
if err := x.Sync(new(ActionRun)); err != nil {
|
|
return err
|
|
}
|
|
|
|
type ActionRunJob struct {
|
|
RepoID int64 `xorm:"index(repo_concurrency)"`
|
|
RawConcurrency string
|
|
IsConcurrencyEvaluated bool
|
|
ConcurrencyGroup string `xorm:"index(repo_concurrency) NOT NULL DEFAULT ''"`
|
|
ConcurrencyCancel bool `xorm:"NOT NULL DEFAULT FALSE"`
|
|
}
|
|
|
|
if _, err := x.SyncWithOptions(xorm.SyncOptions{
|
|
IgnoreDropIndices: true,
|
|
}, new(ActionRunJob)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|