mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-20 01:11:10 +00:00
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/8422 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: Renovate Bot <forgejo-renovate-action@forgejo.org> Co-committed-by: Renovate Bot <forgejo-renovate-action@forgejo.org>
14 lines
312 B
Go
14 lines
312 B
Go
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
package forgejo_migrations
|
|
|
|
import "xorm.io/xorm"
|
|
|
|
func AddNotifyEmailToActionRun(x *xorm.Engine) error {
|
|
type ActionRun struct {
|
|
ID int64
|
|
NotifyEmail bool
|
|
}
|
|
return x.Sync(new(ActionRun))
|
|
}
|