Browse Source

Rename migration package name for 1.22-rc1 (#30730)

Ref: Propose to restart 1.22 release #30501
tags/v1.22.0-rc1
wxiaoguang 1 month ago
parent
commit
6d2a307ad8
No account linked to committer's email address

+ 8
- 7
models/migrations/migrations.go View File

@@ -21,7 +21,6 @@ import (
"code.gitea.io/gitea/models/migrations/v1_20"
"code.gitea.io/gitea/models/migrations/v1_21"
"code.gitea.io/gitea/models/migrations/v1_22"
"code.gitea.io/gitea/models/migrations/v1_23"
"code.gitea.io/gitea/models/migrations/v1_6"
"code.gitea.io/gitea/models/migrations/v1_7"
"code.gitea.io/gitea/models/migrations/v1_8"
@@ -574,18 +573,20 @@ var migrations = []Migration{
// v293 -> v294
NewMigration("Ensure every project has exactly one default column", v1_22.CheckProjectColumnsConsistency),

// Gitea 1.22.0 ends at 294
// Gitea 1.22.0-rc0 ends at 294

// v294 -> v295
NewMigration("Add unique index for project issue table", v1_23.AddUniqueIndexForProjectIssue),
NewMigration("Add unique index for project issue table", v1_22.AddUniqueIndexForProjectIssue),
// v295 -> v296
NewMigration("Add commit status summary table", v1_23.AddCommitStatusSummary),
NewMigration("Add commit status summary table", v1_22.AddCommitStatusSummary),
// v296 -> v297
NewMigration("Add missing field of commit status summary table", v1_23.AddCommitStatusSummary2),
NewMigration("Add missing field of commit status summary table", v1_22.AddCommitStatusSummary2),
// v297 -> v298
NewMigration("Add everyone_access_mode for repo_unit", v1_23.AddRepoUnitEveryoneAccessMode),
NewMigration("Add everyone_access_mode for repo_unit", v1_22.AddRepoUnitEveryoneAccessMode),
// v298 -> v299
NewMigration("Drop wrongly created table o_auth2_application", v1_23.DropWronglyCreatedTable),
NewMigration("Drop wrongly created table o_auth2_application", v1_22.DropWronglyCreatedTable),

// Gitea 1.22.0-rc1 ends at 299
}

// GetCurrentDBVersion returns the current db version

models/migrations/v1_23/v294.go → models/migrations/v1_22/v294.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import (
"fmt"

models/migrations/v1_23/v294_test.go → models/migrations/v1_22/v294_test.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import (
"slices"

models/migrations/v1_23/v295.go → models/migrations/v1_22/v295.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import "xorm.io/xorm"


models/migrations/v1_23/v296.go → models/migrations/v1_22/v296.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import "xorm.io/xorm"


models/migrations/v1_23/v297.go → models/migrations/v1_22/v297.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import (
"code.gitea.io/gitea/models/perm"

models/migrations/v1_23/v298.go → models/migrations/v1_22/v298.go View File

@@ -1,7 +1,7 @@
// Copyright 2024 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package v1_23 //nolint
package v1_22 //nolint

import "xorm.io/xorm"


Loading…
Cancel
Save