This is an automated email from the ASF dual-hosted git repository. linkinstar pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/answer.git
commit a1f0b0963b889f11d43963022282e665dd4dc135 Author: Yusuke Tanaka <[email protected]> AuthorDate: Fri Dec 26 11:39:16 2025 +0900 fix: update migration version from v1.7.1 to v1.7.2 --- 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 7ea0bc98..9fda8c34 100644 --- a/internal/migrations/migrations.go +++ b/internal/migrations/migrations.go @@ -104,7 +104,7 @@ var migrations = []Migration{ NewMigration("v1.5.1", "add plugin kv storage", addPluginKVStorage, true), NewMigration("v1.6.0", "move user config to interface", moveUserConfigToInterface, true), NewMigration("v1.7.0", "add optional tags", addOptionalTags, true), - NewMigration("v1.7.1", "expand avatar column length", expandAvatarColumnLength, false), + NewMigration("v1.7.2", "expand avatar column length", expandAvatarColumnLength, false), } func GetMigrations() []Migration {
