gitea源码

1234567891011
  1. // Copyright 2024 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_22
  4. import "xorm.io/xorm"
  5. func DropWronglyCreatedTable(x *xorm.Engine) error {
  6. return x.DropTables("o_auth2_application")
  7. }