Disable schema synchronization and dropping for database configurations

This commit is contained in:
miguel
2025-06-20 10:39:29 -06:00
parent a64e4ea925
commit 8fe2b6cc72
+3 -3
View File
@@ -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,
});