mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 16:24:25 +00:00
18 lines
328 B
Go
18 lines
328 B
Go
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package v1_22 //nolint
|
||
|
|
||
|
import (
|
||
|
"xorm.io/xorm"
|
||
|
)
|
||
|
|
||
|
type HookTask struct {
|
||
|
PayloadVersion int `xorm:"DEFAULT 1"`
|
||
|
}
|
||
|
|
||
|
func AddPayloadVersionToHookTaskTable(x *xorm.Engine) error {
|
||
|
// create missing column
|
||
|
return x.Sync(new(HookTask))
|
||
|
}
|