Add admin API route for managing user's badges (#23106) (database migration ony)
Fix #22785 --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> (cherry picked from commit cb52b17f92e2d2293f7c003649743464492bca48) Conflicts: discard everything except the database migration
This commit is contained in:
parent
6403d5fca7
commit
82b7de1360
2 changed files with 48 additions and 0 deletions
|
@ -560,6 +560,8 @@ var migrations = []Migration{
|
||||||
NewMigration("Add PreviousDuration to ActionRun", v1_22.AddPreviousDurationToActionRun),
|
NewMigration("Add PreviousDuration to ActionRun", v1_22.AddPreviousDurationToActionRun),
|
||||||
// v286 -> v287
|
// v286 -> v287
|
||||||
NewMigration("Add support for SHA256 git repositories", v1_22.AdjustDBForSha256),
|
NewMigration("Add support for SHA256 git repositories", v1_22.AdjustDBForSha256),
|
||||||
|
// v287 -> v288
|
||||||
|
NewMigration("Use Slug instead of ID for Badges", v1_22.UseSlugInsteadOfIDForBadges),
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCurrentDBVersion returns the current db version
|
// GetCurrentDBVersion returns the current db version
|
||||||
|
|
46
models/migrations/v1_22/v287.go
Normal file
46
models/migrations/v1_22/v287.go
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
|
package v1_22 //nolint
|
||||||
|
|
||||||
|
import (
|
||||||
|
"xorm.io/xorm"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BadgeUnique struct {
|
||||||
|
ID int64 `xorm:"pk autoincr"`
|
||||||
|
Slug string `xorm:"UNIQUE"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (BadgeUnique) TableName() string {
|
||||||
|
return "badge"
|
||||||
|
}
|
||||||
|
|
||||||
|
func UseSlugInsteadOfIDForBadges(x *xorm.Engine) error {
|
||||||
|
type Badge struct {
|
||||||
|
Slug string
|
||||||
|
}
|
||||||
|
|
||||||
|
err := x.Sync(new(Badge))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
sess := x.NewSession()
|
||||||
|
defer sess.Close()
|
||||||
|
if err := sess.Begin(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = sess.Exec("UPDATE `badge` SET `slug` = `id` Where `slug` IS NULL")
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
err = sess.Sync(new(BadgeUnique))
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
return sess.Commit()
|
||||||
|
}
|
Loading…
Reference in a new issue