From b6e9622b3e10c6a6292a4dab1b947814d81f9985 Mon Sep 17 00:00:00 2001 From: raymondanything Date: Mon, 8 Jan 2024 10:00:04 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=99=98=EA=B2=BD=EB=B3=84=20=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=84=B0=EB=B2=A0=EC=9D=B4=EC=8A=A4=20=EB=B6=84?= =?UTF-8?q?=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/database/database.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/database.module.ts b/src/database/database.module.ts index 9054889..69c8572 100644 --- a/src/database/database.module.ts +++ b/src/database/database.module.ts @@ -14,7 +14,7 @@ import { TypeOrmModule } from '@nestjs/typeorm'; synchronize: process.env.NODE_ENV !== 'production', schema: process.env.NODE_ENV !== 'production' - ? 'development' + ? 'public' : process.env.KUBE_ENV ?? 'development', logging: process.env.NODE_ENV !== 'production', entities: [__dirname + './../**/**.entity{.ts,.js}'],