From 0ad9cbd85e391269f5dfd8cddc71d798a8af8e08 Mon Sep 17 00:00:00 2001 From: Doloro1978 Date: Thu, 26 Mar 2026 00:21:28 +0000 Subject: [PATCH] bwa --- crates/migration/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/migration/src/main.rs b/crates/migration/src/main.rs index 95077fe..5c3beb1 100644 --- a/crates/migration/src/main.rs +++ b/crates/migration/src/main.rs @@ -9,6 +9,6 @@ async fn main() { db.execute_unprepared("PRAGMA foreign_keys = ON;") .await .unwrap(); - let db_fn = async move |_| Ok((db)); + let db_fn = async move |_| Ok(db); cli::run_cli_with_connection(migration::Migrator, db_fn).await; }