summaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_21/v275.go
blob: 78804a59d629b712f5a2b00ba7e86832303c0539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_21 //nolint

import (
	"xorm.io/xorm"
)

func AddScheduleIDForActionRun(x *xorm.Engine) error {
	type ActionRun struct {
		ScheduleID int64
	}
	return x.Sync(new(ActionRun))
}