summaryrefslogtreecommitdiffstats
path: root/models/migrations/v1_22/v298.go
diff options
context:
space:
mode:
authorwxiaoguang <wxiaoguang@gmail.com>2024-04-27 22:02:07 +0800
committerGitHub <noreply@github.com>2024-04-27 14:02:07 +0000
commit6d2a307ad8af7d686f1c3a3706ff0f2df895658a (patch)
tree2daa174a517b3da69bd7724b4edaeef1ae489d19 /models/migrations/v1_22/v298.go
parentb93c87b6fe025408777d9f2091d29941e439e58c (diff)
downloadgitea-6d2a307ad8af7d686f1c3a3706ff0f2df895658a.tar.gz
gitea-6d2a307ad8af7d686f1c3a3706ff0f2df895658a.zip
Rename migration package name for 1.22-rc1 (#30730)
Ref: Propose to restart 1.22 release #30501
Diffstat (limited to 'models/migrations/v1_22/v298.go')
-rw-r--r--models/migrations/v1_22/v298.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/models/migrations/v1_22/v298.go b/models/migrations/v1_22/v298.go
new file mode 100644
index 0000000000..b9f3b95ade
--- /dev/null
+++ b/models/migrations/v1_22/v298.go
@@ -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")
+}