bench-forgejo/models/migrations/v1_9/v86.go

17 lines
309 B
Go
Raw Normal View History

// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_9 //nolint
import (
2019-10-17 14:56:49 +05:30
"xorm.io/xorm"
)
func AddHTTPMethodToWebhook(x *xorm.Engine) error {
type Webhook struct {
HTTPMethod string `xorm:"http_method DEFAULT 'POST'"`
}
return x.Sync2(new(Webhook))
}