From d160ca75f521df70c405e5ab2575f8ba0a00ad8c Mon Sep 17 00:00:00 2001 From: rustmailer Date: Wed, 20 May 2026 17:19:31 +0800 Subject: [PATCH] fix: migration link doesn't exist #244 --- crates/server/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/server/src/main.rs b/crates/server/src/main.rs index 5ad2f8e..ac51591 100644 --- a/crates/server/src/main.rs +++ b/crates/server/src/main.rs @@ -73,8 +73,9 @@ async fn main() -> BichonResult<()> { Ok(false) => { error!("Incompatible data format detected."); error!("Your data was created by an older version of Bichon and must be migrated before use."); + error!("Please stop the Bichon v0.3.7 service before migration."); error!("Please run: bichon-admin"); - error!("Documentation: https://github.com/rustmailer/bichon/wiki/migration"); + error!("Documentation: https://github.com/rustmailer/bichon/wiki/Bichon-Data-Migration:-v0.3.7-%E2%86%92-v1.0"); return Err(raise_error!( "Legacy data layout detected".into(), ErrorCode::InternalError