Add enhanced data synchronization functions and improve user feedback
This commit introduces new functions for confirming database names during synchronization, enhancing safety when syncing to production environments. The `fxStaticSyncResolveDataStatus` and `fxStaticSyncFormatDataDiffSummary` functions are added to provide clearer status reporting and summaries of data discrepancies. Additionally, the synchronization process is refined to improve user feedback, including clearer messages regarding data alignment and discrepancies. These changes aim to enhance the robustness and clarity of the database synchronization workflow.
This commit is contained in:
19
sql/MSIN-eve-acces-v2-drop-foreign-keys.sql
Normal file
19
sql/MSIN-eve-acces-v2-drop-foreign-keys.sql
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
MSIN — Retrait FK acces v2
|
||||
Base : devinscription_preprod UNIQUEMENT
|
||||
Aucune donnee touchee.
|
||||
*/
|
||||
|
||||
USE devinscription_preprod;
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
|
||||
ALTER TABLE `inscriptions_eve_role_permissions`
|
||||
DROP FOREIGN KEY `fk_erp_role`,
|
||||
DROP FOREIGN KEY `fk_erp_perm`;
|
||||
|
||||
ALTER TABLE `inscriptions_eve_acces`
|
||||
DROP FOREIGN KEY `fk_ea_role`;
|
||||
|
||||
ALTER TABLE `inscriptions_eve_acces_extra`
|
||||
DROP FOREIGN KEY `fk_ae_perm`;
|
||||
Reference in New Issue
Block a user