]> source.dussan.org Git - gitea.git/commitdiff
Migration v244.go should be v243.go (#22988)
authorzeripath <art27@cantab.net>
Sun, 19 Feb 2023 14:24:23 +0000 (14:24 +0000)
committerGitHub <noreply@github.com>
Sun, 19 Feb 2023 14:24:23 +0000 (09:24 -0500)
models/migrations/v1_19/v243.go [new file with mode: 0644]
models/migrations/v1_19/v244.go [deleted file]

diff --git a/models/migrations/v1_19/v243.go b/models/migrations/v1_19/v243.go
new file mode 100644 (file)
index 0000000..55bbfaf
--- /dev/null
@@ -0,0 +1,16 @@
+// Copyright 2023 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
+package v1_19 //nolint
+
+import (
+       "xorm.io/xorm"
+)
+
+func AddExclusiveLabel(x *xorm.Engine) error {
+       type Label struct {
+               Exclusive bool
+       }
+
+       return x.Sync(new(Label))
+}
diff --git a/models/migrations/v1_19/v244.go b/models/migrations/v1_19/v244.go
deleted file mode 100644 (file)
index 55bbfaf..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2023 The Gitea Authors. All rights reserved.
-// SPDX-License-Identifier: MIT
-
-package v1_19 //nolint
-
-import (
-       "xorm.io/xorm"
-)
-
-func AddExclusiveLabel(x *xorm.Engine) error {
-       type Label struct {
-               Exclusive bool
-       }
-
-       return x.Sync(new(Label))
-}