Skip to content
Snippets Groups Projects
Unverified Commit fa188174 authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #21198 from colemanw/fkConstraint

[REF] Mapping - Check FK on delete with SQL instead of PHP (#2757)
parents b3c37419 9f3b9e96
No related branches found
No related tags found
No related merge requests found
......@@ -48,24 +48,12 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping {
* Delete the mapping.
*
* @param int $id
* Mapping id.
*
* @deprecated
* @return bool
*/
public static function del($id) {
// delete from mapping_field table
$mappingField = new CRM_Core_DAO_MappingField();
$mappingField->mapping_id = $id;
$mappingField->delete();
// delete from mapping table
$mapping = new CRM_Core_DAO_Mapping();
$mapping->id = $id;
if ($mapping->find(TRUE)) {
$result = $mapping->delete();
return $result;
}
return FALSE;
return (bool) static::deleteRecord(['id' => $id]);
}
/**
......
......@@ -6,7 +6,7 @@
*
* Generated from xml/schema/CRM/Core/MappingField.xml
* DO NOT EDIT. Generated by CRM_Core_CodeGen
* (GenCodeChecksum:d2ce640ccb1f30190097cced450038e0)
* (GenCodeChecksum:4333a20d925fb437b4764219e31ee017)
*/
/**
......
......@@ -10,7 +10,8 @@
*/
/**
* Upgrade logic for FiveFortyThree */
* Upgrade logic for FiveFortyThree
*/
class CRM_Upgrade_Incremental_php_FiveFortyThree extends CRM_Upgrade_Incremental_Base {
/**
......@@ -49,12 +50,6 @@ class CRM_Upgrade_Incremental_php_FiveFortyThree extends CRM_Upgrade_Incremental
// }
}
/*
* Important! All upgrade functions MUST add a 'runSql' task.
* Uncomment and use the following template for a new upgrade version
* (change the x in the function name):
*/
/**
* Upgrade function.
*
......@@ -63,7 +58,7 @@ class CRM_Upgrade_Incremental_php_FiveFortyThree extends CRM_Upgrade_Incremental
public function upgrade_5_43_alpha1(string $rev): void {
$this->addTask(ts('Upgrade DB to %1: SQL', [1 => $rev]), 'runSql', $rev);
$this->addTask('Fix DB Collation if needed on the relatonship cache table', 'fixRelationshipCacheTableCollation');
$this->addTask('Make mapping field foreign key cascade delete', 'alterMappingFK');
$this->addTask('Replace legacy displayName smarty token in Online contribution workflow template',
'updateMessageToken', 'contribution_online_receipt', '$displayName', 'contact.display_name', $rev
);
......@@ -75,6 +70,22 @@ class CRM_Upgrade_Incremental_php_FiveFortyThree extends CRM_Upgrade_Incremental
);
}
/**
* @param \CRM_Queue_TaskContext $ctx
*
* @return bool
*/
public static function alterMappingFK(CRM_Queue_TaskContext $ctx): bool {
CRM_Core_BAO_SchemaHandler::safeRemoveFK('civicrm_mapping_field', 'FK_civicrm_mapping_field_mapping_id');
CRM_Core_DAO::executeQuery('
ALTER TABLE civicrm_mapping_field
ADD CONSTRAINT `FK_civicrm_mapping_field_mapping_id`
FOREIGN KEY (`mapping_id`)
REFERENCES `civicrm_mapping`(`id`) ON DELETE CASCADE
', [], TRUE, NULL, FALSE, FALSE);
return TRUE;
}
public static function fixRelationshipCacheTableCollation():bool {
$contactTableCollation = CRM_Core_BAO_SchemaHandler::getInUseCollation();
$dao = CRM_Core_DAO::executeQuery('SHOW TABLE STATUS LIKE \'civicrm_relationship_cache\'');
......
......@@ -38,6 +38,7 @@
<table>civicrm_mapping</table>
<key>id</key>
<add>1.2</add>
<onDelete>CASCADE</onDelete>
</foreignKey>
<field>
<name>name</name>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment