0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-10 14:01:54 +02:00

re-add repo group migration

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2026-05-04 14:55:38 -04:00
parent 777eb9bc86
commit e1bf87833e
No known key found for this signature in database
GPG Key ID: 924A5F6AF051E87C
2 changed files with 2 additions and 2 deletions

View File

@ -409,7 +409,7 @@ func prepareMigrationTasks() []*migration {
// Gitea 1.26.0 ends at migration ID number 330 (database version 331)
newMigration(331, "Add ActionRunAttempt model and related action fields", v1_27.AddActionRunAttemptModel),
newMigration(332, "Add group_id and group_sort_order columns to repository table", v1_26.AddGroupColumnsToRepositoryTable),
newMigration(332, "Add group_id and group_sort_order columns to repository table", v1_27.AddGroupColumnsToRepositoryTable),
}
return preparedMigrations
}

View File

@ -1,7 +1,7 @@
// Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package v1_26
package v1_27
import "xorm.io/xorm"