mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-27 00:35:17 +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>
35 lines
1.3 KiB
Go
35 lines
1.3 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_27
|
|
|
|
import (
|
|
"gitea.dev/modelmigration/base"
|
|
"gitea.dev/models/db"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
// AddReusableWorkflowFieldsToActionRunJob adds the ActionRunJob columns that describe the reusable workflow caller hierarchy,
|
|
// and the ActionRunAttemptJobIDIndex table backing run-wide AttemptJobID allocation.
|
|
func AddReusableWorkflowFieldsToActionRunJob(x base.EngineMigration) error {
|
|
type ActionRunJob struct {
|
|
WorkflowSourceRepoID int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
WorkflowSourceCommitSHA string `xorm:"VARCHAR(64) NOT NULL DEFAULT ''"`
|
|
IsReusableCaller bool `xorm:"index NOT NULL DEFAULT FALSE"`
|
|
ParentJobID int64 `xorm:"index NOT NULL DEFAULT 0"`
|
|
CallUses string `xorm:"VARCHAR(512) NOT NULL DEFAULT ''"`
|
|
CallSecrets string `xorm:"LONGTEXT"`
|
|
CallPayload string `xorm:"LONGTEXT"`
|
|
IsExpanded bool `xorm:"NOT NULL DEFAULT FALSE"`
|
|
ReusableWorkflowContent []byte `xorm:"LONGBLOB"`
|
|
}
|
|
|
|
type ActionRunAttemptJobIDIndex db.ResourceIndex
|
|
|
|
if _, err := x.SyncWithOptions(xorm.SyncOptions{IgnoreDropIndices: true}, new(ActionRunJob)); err != nil {
|
|
return err
|
|
}
|
|
return x.Sync(new(ActionRunAttemptJobIDIndex))
|
|
}
|