mirror of
https://github.com/go-gitea/gitea
synced 2024-11-03 08:44:25 +00:00
6d2a307ad8
Ref: Propose to restart 1.22 release #30501
11 lines
237 B
Go
11 lines
237 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_22 //nolint
|
|
|
|
import "xorm.io/xorm"
|
|
|
|
func DropWronglyCreatedTable(x *xorm.Engine) error {
|
|
return x.DropTables("o_auth2_application")
|
|
}
|