Skip to content

Commit e66a51e

Browse files
committed
update migration
1 parent 431348e commit e66a51e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

models/migrations/migrations.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ func prepareMigrationTasks() []*migration {
373373

374374
// Gitea 1.23.0-rc0 ends at migration ID number 311 (database version 312)
375375
newMigration(312, "Add DeleteBranchAfterMerge to AutoMerge", v1_24.AddDeleteBranchAfterMergeForAutoMerge),
376+
newMigration(313, "Add support for actions concurrency", v1_24.AddActionsConcurrency),
376377
}
377378
return preparedMigrations
378379
}

models/migrations/v1_23/v312.go renamed to models/migrations/v1_24/v313.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
// Copyright 2024 The Gitea Authors. All rights reserved.
1+
// Copyright 2025 The Gitea Authors. All rights reserved.
22
// SPDX-License-Identifier: MIT
33

4-
package v1_23 //nolint
4+
package v1_24 //nolint
55

66
import (
77
"xorm.io/xorm"

0 commit comments

Comments
 (0)