From 22abe79b050cbb7725567917f1b7b8153ad973d4 Mon Sep 17 00:00:00 2001 From: yaschalew Date: Sat, 20 Jun 2026 14:43:55 +0300 Subject: [PATCH] fix db url --- apps/edr-freight-api/src/config/database.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/edr-freight-api/src/config/database.config.ts b/apps/edr-freight-api/src/config/database.config.ts index e4bcaa3e4..0e7375b19 100644 --- a/apps/edr-freight-api/src/config/database.config.ts +++ b/apps/edr-freight-api/src/config/database.config.ts @@ -117,7 +117,7 @@ export default registerAs("database", (): TypeOrmModuleOptions => { ], migrationsRun: true, // Schema changes via migrations only (synchronize breaks ITMLS backfill on existing rows). - synchronize: process.env.NODE_ENV === "development", + synchronize: false, logging: process.env.NODE_ENV === "development", }; });