diff options
author | guillep2k <github.com@mailfilter.com.ar> | 2019-08-06 05:57:55 -0300 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2019-08-06 11:57:55 +0300 |
commit | 0470b16e8a0afdf276f432f9bc462a9c8796d0c3 (patch) | |
tree | 05ecdc53ec7dc9e75b9562bfeab75f3fb21187ce /models | |
parent | 4328d8e8d72c49ee92566f1e6b17edf177004cc7 (diff) | |
download | gitea-0470b16e8a0afdf276f432f9bc462a9c8796d0c3.tar.gz gitea-0470b16e8a0afdf276f432f9bc462a9c8796d0c3.zip |
Add migration step to remove old repo_indexer_status orphaned records (#7746)
* Add migration step to remove old repo_indexer_status orphaned records
* Include RepoIndexerStatus struct definition in the migrate function
* Change .Delete(o) into ID(o.ID).Delete(new(RepoIndexerStatus))
* Simplification of the delete procedure
* Rename v91.go to v92.go
Diffstat (limited to 'models')
-rw-r--r-- | models/migrations/migrations.go | 2 | ||||
-rw-r--r-- | models/migrations/v92.go | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index bbd1bb734f..9ffcfb4df2 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -238,6 +238,8 @@ var migrations = []Migration{ NewMigration("change length of some repository columns", changeSomeColumnsLengthOfRepo), // v91 -> v92 NewMigration("add index on owner_id of repository and type, review_id of comment", addIndexOnRepositoryAndComment), + // v92 -> v93 + NewMigration("remove orphaned repository index statuses", removeLingeringIndexStatus), } // Migrate database to current version diff --git a/models/migrations/v92.go b/models/migrations/v92.go new file mode 100644 index 0000000000..090332f151 --- /dev/null +++ b/models/migrations/v92.go @@ -0,0 +1,16 @@ +// Copyright 2019 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 ( + "github.com/go-xorm/xorm" + "xorm.io/builder" +) + +func removeLingeringIndexStatus(x *xorm.Engine) error { + + _, err := x.Exec(builder.Delete(builder.NotIn("`repo_id`", builder.Select("`id`").From("`repository`"))).From("`repo_indexer_status`")) + return err +} |