mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-07 07:22:04 +00:00
ac49dbe1a2
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
27 lines
571 B
Go
27 lines
571 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v1_13
|
|
|
|
import (
|
|
"context"
|
|
|
|
"gitea.dev/modelmigration/base"
|
|
"gitea.dev/modules/log"
|
|
|
|
"xorm.io/builder"
|
|
)
|
|
|
|
func SetIsArchivedToFalse(_ context.Context, x base.EngineMigration) error {
|
|
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
|
|
}
|