From b235a6be9a1c0cbd73b180a85f13443e28391496 Mon Sep 17 00:00:00 2001 From: Michael Wolf Date: Sat, 10 Jan 2026 13:05:39 -0600 Subject: [PATCH] Add block for declared var --- express/migrate.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/express/migrate.ts b/express/migrate.ts index 5d20333..1d32d07 100644 --- a/express/migrate.ts +++ b/express/migrate.ts @@ -12,7 +12,7 @@ async function main(): Promise { await migrate(); break; - case "status": + case "status": { const status = await migrationStatus(); console.log("Applied migrations:"); for (const name of status.applied) { @@ -27,6 +27,7 @@ async function main(): Promise { console.log("\nNo pending migrations"); } break; + } default: console.error(`Unknown command: ${command}`);