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.
20 lines
419 B
SQL
20 lines
419 B
SQL
/*
|
|
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`;
|