Removing migrations from nestjs code and relying on typeorcli

This commit is contained in:
Collin Duncan 2023-06-29 15:20:18 +02:00
parent 4f15521afe
commit 582f79eb27
No known key found for this signature in database

View file

@ -23,12 +23,7 @@ import { RunnerModule } from './runner/module'
'DATABASE', 'DATABASE',
resolve('./db/autobaan_db'), resolve('./db/autobaan_db'),
), ),
migrations: [ migrations: [],
configService.get<string>(
'DATABASE_MIGRATIONS',
resolve('./database/migrations/*.ts'),
),
],
autoLoadEntities: true, autoLoadEntities: true,
logging: true, logging: true,
}), }),