mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 06:26:16 +01:00
17 lines
508 B
Go
17 lines
508 B
Go
|
// Copyright 2024 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package forgejo_migrations //nolint:revive
|
||
|
|
||
|
import "xorm.io/xorm"
|
||
|
|
||
|
// AddDeleteBranchAfterMergeToAutoMerge: add DeleteBranchAfterMerge column, setting existing rows to false
|
||
|
func AddDeleteBranchAfterMergeToAutoMerge(x *xorm.Engine) error {
|
||
|
type AutoMerge struct {
|
||
|
ID int64 `xorm:"pk autoincr"`
|
||
|
DeleteBranchAfterMerge bool `xorm:"NOT NULL DEFAULT false"`
|
||
|
}
|
||
|
|
||
|
return x.Sync(&AutoMerge{})
|
||
|
}
|