From 7e547864f88a941806ed9bfae76c0f6d54b713dd Mon Sep 17 00:00:00 2001 From: colemanw Date: Tue, 24 Oct 2023 08:50:38 -0400 Subject: [PATCH] Upgrader - Repeat step from 5.66 because it was added late in the release-cycle --- CRM/Upgrade/Incremental/php/FiveSixtySeven.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CRM/Upgrade/Incremental/php/FiveSixtySeven.php b/CRM/Upgrade/Incremental/php/FiveSixtySeven.php index cb7ebc5d9b..7b7d586b65 100644 --- a/CRM/Upgrade/Incremental/php/FiveSixtySeven.php +++ b/CRM/Upgrade/Incremental/php/FiveSixtySeven.php @@ -60,6 +60,17 @@ class CRM_Upgrade_Incremental_php_FiveSixtySeven extends CRM_Upgrade_Incremental $this->addTask('Update CiviMail menus labels', 'updateMailingMenuLabels'); } + /** + * Upgrade step; adds tasks including 'runSql'. + * + * @param string $rev + * The version number matching this function name + */ + public function upgrade_5_67_beta2($rev): void { + // Repeat step from 5.66 because it was added late in the release-cycle + $this->addTask('Make ActionSchedule.name required', 'alterColumn', 'civicrm_action_schedule', 'name', "varchar(128) NOT NULL COMMENT 'Name of the scheduled action'"); + } + /** * Some time ago, the labels for Mailing menu items were simplified for new * installs. Now that the old strings have been removed from Transifex, it -- 2.25.1