diff --git a/src/db/typeorm.config.ts b/src/db/typeorm.config.ts index ba41ad2..8748b60 100644 --- a/src/db/typeorm.config.ts +++ b/src/db/typeorm.config.ts @@ -54,8 +54,8 @@ export const createMainDbConfig = async ( retryDelay: 3000, connectTimeout: 30000, - synchronize: true, - dropSchema: true, + synchronize: false, + dropSchema: false, }); export const createAlumnosDbConfig = async ( @@ -73,6 +73,6 @@ export const createAlumnosDbConfig = async ( retryDelay: 3000, connectTimeout: 30000, - synchronize: true, + synchronize: false, dropSchema: false, });