diff options
author | 赵智超 <1012112796@qq.com> | 2020-07-08 03:16:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-07 15:16:34 -0400 |
commit | 12f9dd8fa9c02be1c38f7994066c986e50dfd2e9 (patch) | |
tree | 3113d3d93797315f5baf5790a02f69c09e98808a /models/migrations/migrations.go | |
parent | 88ef04dbe9e1d4065df98e71a5914674a3bb40a3 (diff) | |
download | gitea-12f9dd8fa9c02be1c38f7994066c986e50dfd2e9.tar.gz gitea-12f9dd8fa9c02be1c38f7994066c986e50dfd2e9.zip |
Decrease the num_stars when deleting a repo (#11954)
* Decrease the num_stars when deleting a repo
fix #11949
Signed-off-by: a1012112796 <1012112796@qq.com>
* Add migration
* use batch
* Apply suggestions from code review
Co-authored-by: Lauris BH <lauris@nix.lv>
* fix lint
* fix lint
* fix ci
* fix ci2
* add doctor
* duplicate code
* fix migration
* fix some nits
* add start
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'models/migrations/migrations.go')
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 6cc80249a3..d205794e1f 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -218,6 +218,8 @@ var migrations = []Migration{ NewMigration("Add KeepActivityPrivate to User table", addKeepActivityPrivateUserColumn), // v142 -> v143 NewMigration("Ensure Repository.IsArchived is not null", setIsArchivedToFalse), + // v143 -> v144 + NewMigration("recalculate Stars number for all user", recalculateStars), } // GetCurrentDBVersion returns the current db version |