Files
gitea/models/migrations/v1_27/v334.go
2026-05-18 03:56:39 +08:00

23 lines
491 B
Go

// Copyright 2026 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_27
import (
"code.gitea.io/gitea/models/db"
"xorm.io/xorm"
)
func AddCancellingSupportToActionRunner(x db.EngineMigration) error {
type ActionRunner struct {
HasCancellingSupport bool `xorm:"has_cancelling_support NOT NULL DEFAULT false"`
}
_, err := x.SyncWithOptions(xorm.SyncOptions{
IgnoreConstrains: true,
IgnoreDropIndices: true,
}, new(ActionRunner))
return err
}