giteabot backport / giteabot (push) Canceled after 0s
giteabot / giteabot (push) Canceled after 0s
release-nightly / nightly-binary (push) Canceled after 0s
release-nightly / nightly-container (push) Canceled after 0s
cache-seeder / gobuild (push) Canceled after 0s
cache-seeder / lint (bindata, lint-backend) (push) Canceled after 0s
release-nightly-snapcraft / build-and-publish (push) Canceled after 0s
Includes direct password setup links in registration emails. Assisted-by: Codex:GPT-5
27 lines
574 B
Go
27 lines
574 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_22
|
|
|
|
import (
|
|
"gitea.dev/models/db"
|
|
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
type HookTask struct {
|
|
PayloadVersion int `xorm:"DEFAULT 1"`
|
|
}
|
|
|
|
func AddPayloadVersionToHookTaskTable(x db.EngineMigration) error {
|
|
// create missing column
|
|
if _, err := x.SyncWithOptions(xorm.SyncOptions{
|
|
IgnoreIndices: true,
|
|
IgnoreConstrains: true,
|
|
}, new(HookTask)); err != nil {
|
|
return err
|
|
}
|
|
_, err := x.Exec("UPDATE hook_task SET payload_version = 1 WHERE payload_version IS NULL")
|
|
return err
|
|
}
|