mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Rename migration package name for 1.22-rc1 (#30730)
Ref: Propose to restart 1.22 release #30501
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
| @@ -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" | ||||
| @@ -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" | ||||
| @@ -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" | ||||
| 
 | ||||
| @@ -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" | ||||
| 
 | ||||
| @@ -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" | ||||
| @@ -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" | ||||
| 
 | ||||
		Reference in New Issue
	
	Block a user