From df642179baad4c7a04617034dcbbd231229a5232 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Tue, 16 Jan 2024 10:45:14 -0500 Subject: [PATCH] fix typo --- pg-migrator/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg-migrator/src/index.ts b/pg-migrator/src/index.ts index b439040bd..7ae1da790 100644 --- a/pg-migrator/src/index.ts +++ b/pg-migrator/src/index.ts @@ -198,7 +198,7 @@ const main = async () => { let postgres_url = process.env.POSTGRES_DB_URL; if (!postgres_url) { - postgres_url = prompt("Type the mongodb url: "); + postgres_url = prompt("Type the postgres url: "); } console.log("Checking postgres connection...");