Disable schema synchronization and dropping for database configurations
This commit is contained in:
@@ -54,8 +54,8 @@ export const createMainDbConfig = async (
|
|||||||
retryDelay: 3000,
|
retryDelay: 3000,
|
||||||
connectTimeout: 30000,
|
connectTimeout: 30000,
|
||||||
|
|
||||||
synchronize: true,
|
synchronize: false,
|
||||||
dropSchema: true,
|
dropSchema: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const createAlumnosDbConfig = async (
|
export const createAlumnosDbConfig = async (
|
||||||
@@ -73,6 +73,6 @@ export const createAlumnosDbConfig = async (
|
|||||||
retryDelay: 3000,
|
retryDelay: 3000,
|
||||||
connectTimeout: 30000,
|
connectTimeout: 30000,
|
||||||
|
|
||||||
synchronize: true,
|
synchronize: false,
|
||||||
dropSchema: false,
|
dropSchema: false,
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user