aboutsummaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_21/v269.go
blob: 042040927d4f8fa6b6b83cfe65a41492ec9c4246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_21

import (
	"xorm.io/xorm"
)

func DropDeletedBranchTable(x *xorm.Engine) error {
	return x.DropTables("deleted_branch")
}