gitea源码

12345678910111213
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_21
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func DropDeletedBranchTable(x *xorm.Engine) error {
  8. return x.DropTables("deleted_branch")
  9. }