From e4c490ad06d02e1a4cd394f8f83bcd276ab3a579 Mon Sep 17 00:00:00 2001 From: kj1352 Date: Wed, 13 Oct 2021 12:21:05 +0530 Subject: [PATCH] Changed DB to anamnesis --- src/db-utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db-utils.ts b/src/db-utils.ts index 6fcc52f..97ef75d 100644 --- a/src/db-utils.ts +++ b/src/db-utils.ts @@ -1,7 +1,7 @@ import { MongoClient, Collection } from 'mongodb'; // You can define any db name you are looking for here -export const DB_NAME = 'jobportal'; +export const DB_NAME = 'anamnesis'; const DATABASE_URL = 'mongodb://localhost:27017/' + DB_NAME; let databaseClient: MongoClient;