mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 22:16:14 +01:00
16 lines
508 B
Go
16 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{})
|
|
}
|