2020-06-11 14:18:11 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-11 14:18:11 -06:00
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
package v1_13 //nolint
|
2020-06-11 14:18:11 -06:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-17 05:34:35 -07:00
|
|
|
|
2020-06-11 14:18:11 -06:00
|
|
|
"xorm.io/builder"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 02:54:36 -06:00
|
|
|
func SetIsArchivedToFalse(x *xorm.Engine) error {
|
2020-06-11 14:18:11 -06:00
|
|
|
type Repository struct {
|
|
|
|
IsArchived bool `xorm:"INDEX"`
|
|
|
|
}
|
|
|
|
count, err := x.Where(builder.IsNull{"is_archived"}).Cols("is_archived").Update(&Repository{
|
|
|
|
IsArchived: false,
|
|
|
|
})
|
|
|
|
if err == nil {
|
|
|
|
log.Debug("Updated %d repositories with is_archived IS NULL", count)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|