From ed1431db0a9793b9c99b1cb129f73f29d3b00733 Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Sun, 5 Oct 2025 17:43:46 -0700 Subject: [PATCH] improve v1 downgrade --- bin/cli/src/command/database.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(()) }