Disable schema synchronization and dropping for database configurations
This commit is contained in:
@@ -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,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user