diff --git a/bin/cli/src/command/database.rs b/bin/cli/src/command/database.rs index 6009b1abf..2c71c98d0 100644 --- a/bin/cli/src/command/database.rs +++ b/bin/cli/src/command/database.rs @@ -349,7 +349,7 @@ async fn v1_downgrade(yes: bool) -> anyhow::Result<()> { config.database.db_name, ); - crate::command::wait_for_enter("start backup", yes)?; + crate::command::wait_for_enter("run downgrade", yes)?; let db = database::init(&config.database).await?; @@ -358,5 +358,7 @@ async fn v1_downgrade(yes: bool) -> anyhow::Result<()> { .await .context("Failed to downgrade Server schema")?; + info!("V1 Downgrade complete. Ready to downgrade to komodo-core:1 ✅"); + Ok(()) }