From 582f79eb27a963808639c7653842b01c14ac2d96 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Thu, 29 Jun 2023 15:20:18 +0200 Subject: [PATCH] Removing migrations from nestjs code and relying on typeorcli --- src/app.module.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app.module.ts b/src/app.module.ts index 80592df..a830268 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -23,12 +23,7 @@ import { RunnerModule } from './runner/module' 'DATABASE', resolve('./db/autobaan_db'), ), - migrations: [ - configService.get( - 'DATABASE_MIGRATIONS', - resolve('./database/migrations/*.ts'), - ), - ], + migrations: [], autoLoadEntities: true, logging: true, }),