11 lines
241 B
Go
11 lines
241 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_22
|
|
|
|
import "gitea.dev/models/db"
|
|
|
|
func DropWronglyCreatedTable(x db.EngineMigration) error {
|
|
return x.DropTables("o_auth2_application")
|
|
}
|