Files
Gitea/modelmigration/v1_22/v298.go
T
2026-08-03 08:13:15 +00:00

15 lines
289 B
Go

// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_22
import (
"context"
"gitea.dev/modelmigration/base"
)
func DropWronglyCreatedTable(_ context.Context, x base.EngineMigration) error {
return x.DropTables("o_auth2_application")
}