mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-02 16:35:19 +02:00
Rename migration package name for 1.22-rc1 (#30730)
Ref: Propose to restart 1.22 release #30501 (cherry picked from commit 6d2a307ad8af7d686f1c3a3706ff0f2df895658a) Conflicts: models/migrations/migrations.go models/migrations/v1_22/v297.go trivial conflict because a migration does not exist in Forgejo
This commit is contained in:
parent
cbcee5d87d
commit
2d2c18f0bd
6 changed files with 12 additions and 11 deletions
10
models/migrations/v1_22/v298.go
Normal file
10
models/migrations/v1_22/v298.go
Normal file
|
@ -0,0 +1,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")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue