From ae8aceb8393a75c1d0f5075607069be3ca8ed382 Mon Sep 17 00:00:00 2001 From: Rich Lott / Artful Robot Date: Sat, 16 Sep 2023 08:27:28 +0100 Subject: [PATCH] Move from 5.66 to 5.67 --- CRM/Upgrade/Incremental/php/FiveSixtySeven.php | 3 +++ CRM/Upgrade/Incremental/php/FiveSixtySix.php | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CRM/Upgrade/Incremental/php/FiveSixtySeven.php b/CRM/Upgrade/Incremental/php/FiveSixtySeven.php index 0745dab82b..9e764f02ed 100644 --- a/CRM/Upgrade/Incremental/php/FiveSixtySeven.php +++ b/CRM/Upgrade/Incremental/php/FiveSixtySeven.php @@ -33,6 +33,9 @@ class CRM_Upgrade_Incremental_php_FiveSixtySeven extends CRM_Upgrade_Incremental $this->addExtensionTask('Enable Authx extension', ['authx'], 1101); $this->addExtensionTask('Enable Afform extension', ['org.civicrm.afform'], 1102); $this->addTask('Add "civicrm_note" to "note_used_for" option group', 'addNoteNote'); + $this->addTask('Add cache_fill_took column to Group table', 'addColumn', 'civicrm_group', 'cache_fill_took', + 'DOUBLE DEFAULT NULL COMMENT "Seconds taken to fill smart group cache, not always related to cache_date"', + FALSE); } public static function addNoteNote(CRM_Queue_TaskContext $ctx): bool { diff --git a/CRM/Upgrade/Incremental/php/FiveSixtySix.php b/CRM/Upgrade/Incremental/php/FiveSixtySix.php index 8b940882ab..8ee34dd5e2 100644 --- a/CRM/Upgrade/Incremental/php/FiveSixtySix.php +++ b/CRM/Upgrade/Incremental/php/FiveSixtySix.php @@ -48,9 +48,6 @@ class CRM_Upgrade_Incremental_php_FiveSixtySix extends CRM_Upgrade_Incremental_B $this->addTask('Update afform tab names', 'updateAfformTabs'); $this->addTask('Add in Client Removed Activity Type', 'addCaseClientRemovedActivity'); $this->addTask('Update quicksearch options to v4 format', 'updateQuicksearchOptions'); - $this->addTask('Add cache_fill_took column to Group table', 'addColumn', 'civicrm_group', 'cache_fill_took', - 'DOUBLE DEFAULT NULL COMMENT "Seconds taken to fill smart group cache, not always related to cache_date"', - FALSE); } /** -- 2.25.1