This is an automated email from the ASF dual-hosted git repository. linkinstar pushed a commit to branch release/1.4.2 in repository https://gitbox.apache.org/repos/asf/incubator-answer.git
commit 5274d3cffd23aa047c339dd0df65dfce421ee94b Author: LinkinStars <[email protected]> AuthorDate: Mon Dec 9 17:07:38 2024 +0800 fix(migrations): set v1.4.2 migration to required clean cache --- internal/migrations/migrations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/migrations/migrations.go b/internal/migrations/migrations.go index 00e44198..6160ca88 100644 --- a/internal/migrations/migrations.go +++ b/internal/migrations/migrations.go @@ -99,7 +99,7 @@ var migrations = []Migration{ NewMigration("v1.3.6", "add hot score to question table", addQuestionHotScore, true), NewMigration("v1.4.0", "add badge/badge_group/badge_award table", addBadges, true), NewMigration("v1.4.1", "add question link", addQuestionLink, true), - NewMigration("v1.4.2", "add the number of question links", addQuestionLinkedCount, false), + NewMigration("v1.4.2", "add the number of question links", addQuestionLinkedCount, true), } func GetMigrations() []Migration {
