From 273a38d781d500935d7ab04b93856da43d03c088 Mon Sep 17 00:00:00 2001 From: bjoern Date: Sat, 25 Dec 2021 13:38:21 +0100 Subject: [PATCH] migrate log for hop_info added (#2914) that bit was missing in #2751 --- src/sql/migrations.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sql/migrations.rs b/src/sql/migrations.rs index aced6906a..3de93bca1 100644 --- a/src/sql/migrations.rs +++ b/src/sql/migrations.rs @@ -498,6 +498,7 @@ item TEXT DEFAULT '');"#, .await?; } if dbversion < 81 { + info!(context, "[migration] v81"); sql.execute_migration("ALTER TABLE msgs ADD COLUMN hop_info TEXT;", 81) .await?; }