summaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_22/v298.go
blob: b9f3b95ade808df0ff79936922c105bbc55282f9 (plain)
1
2
3
4
5
6
7
8
9
10
// 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")
}