Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix description of drop custom_labels migration #25243

Merged
merged 3 commits into from
Jun 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions models/migrations/migrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -499,10 +499,10 @@ var migrations = []Migration{
// v259 -> 260
NewMigration("Convert scoped access tokens", v1_20.ConvertScopedAccessTokens),

// Gitea 1.21.0 ends at 260
// Gitea 1.20.0 ends at 260

// v260 -> v261
NewMigration("Add label column to action_run table, and combine labels", v1_21.DropCustomLabelsColumnToActRunner),
NewMigration("Drop custom_labels column of action_runner table", v1_21.DropCustomLabelsColumnToActRunner),
sillyguodong marked this conversation as resolved.
Show resolved Hide resolved
}

// GetCurrentDBVersion returns the current db version
Expand Down