mirror of
https://github.com/go-gitea/gitea
synced 2025-07-09 20:17:21 +00:00
enable nolintlint scope requirement add comments to new directives so it's more obvious why they are in place --- I can also toggle the mandatory comments on if that's something of interest. --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Giteabot <teabot@gitea.io>
33 lines
770 B
Go
33 lines
770 B
Go
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_7
|
|
|
|
import (
|
|
"xorm.io/builder"
|
|
"xorm.io/xorm"
|
|
)
|
|
|
|
func ClearNonusedData(x *xorm.Engine) error {
|
|
condDelete := func(colName string) builder.Cond {
|
|
return builder.NotIn(colName, builder.Select("id").From("`user`"))
|
|
}
|
|
|
|
if _, err := x.Exec(builder.Delete(condDelete("uid")).From("team_user")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := x.Exec(builder.Delete(condDelete("user_id")).From("collaboration")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := x.Exec(builder.Delete(condDelete("user_id")).From("stopwatch")); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := x.Exec(builder.Delete(condDelete("owner_id")).From("gpg_key")); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|