mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-27 16:35:57 +00:00
15 lines
328 B
Go
15 lines
328 B
Go
|
// Copyright 2025 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
func AddNotifyEmailToActionRun(x *xorm.Engine) error {
|
||
|
type ActionRun struct {
|
||
|
ID int64
|
||
|
NotifyEmail bool
|
||
|
}
|
||
|
return x.Sync(new(ActionRun))
|
||
|
}
|