2020-06-12 01:48:11 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-06-12 01:48:11 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_13 //nolint
|
2020-06-12 01:48:11 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2020-06-12 01:48:11 +05:30
|
|
|
"xorm.io/builder"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func SetIsArchivedToFalse(x *xorm.Engine) error {
|
2020-06-12 01:48:11 +05:30
|
|
|
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
|
|
|
|
}
|