diff options
author | zeripath <art27@cantab.net> | 2020-06-11 21:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-11 16:18:11 -0400 |
commit | b9e281265ee2c510199cd0241ae02bff2bd8ecc1 (patch) | |
tree | 68e8d10381432e34992ee9638cc3a262a82e622c /models/migrations/v142.go | |
parent | b682a2c1b2d5efde24378858453903b5b89d6df8 (diff) | |
download | gitea-b9e281265ee2c510199cd0241ae02bff2bd8ecc1.tar.gz gitea-b9e281265ee2c510199cd0241ae02bff2bd8ecc1.zip |
Add migration to set IsArchived false if it is null (#11853)
* Add migration to set IsArchived false if it is null
Fix #11824
Signed-off-by: Andrew Thornton <art27@cantab.net>
* Add doctor
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'models/migrations/v142.go')
-rw-r--r-- | models/migrations/v142.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/models/migrations/v142.go b/models/migrations/v142.go new file mode 100644 index 0000000000..1abdd34961 --- /dev/null +++ b/models/migrations/v142.go @@ -0,0 +1,24 @@ +// Copyright 2020 The Gitea Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package migrations + +import ( + "code.gitea.io/gitea/modules/log" + "xorm.io/builder" + "xorm.io/xorm" +) + +func setIsArchivedToFalse(x *xorm.Engine) 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 +} |