Skip to content

Commit

Permalink
Change xml added and upgrader from 5.65 to 5.66
Browse files Browse the repository at this point in the history
  • Loading branch information
artfulrobot committed Sep 3, 2023
1 parent aa45291 commit 0d3f7b8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion CRM/Upgrade/Incremental/php/FiveSixtyFive.php
Expand Up @@ -41,7 +41,6 @@ public function upgrade_5_65_alpha1($rev): void {

$this->addTask('Update ActionSchedule.limit_to column', 'alterColumn', 'civicrm_action_schedule', 'limit_to', "int COMMENT 'Is this the recipient criteria limited to OR in addition to?'");
$this->addTask('Remove Batch Create/Edit Activity Types', 'removeFinancialBatchActivityTypes');
$this->addTask('Add cache_fill_took column to Group table', 'addColumn', 'civicrm_group', 'cache_fill_took', "DECIMAL(10,3) COMMENT 'Seconds taken to fill smart group cache'", FALSE);
$this->addTask('Update New Price Set path', 'updateNewPriceSetPath');
}

Expand Down
1 change: 1 addition & 0 deletions CRM/Upgrade/Incremental/php/FiveSixtySix.php
Expand Up @@ -33,6 +33,7 @@ public function upgrade_5_66_alpha1($rev): void {
$this->addTask('Make ActionSchedule.name required', 'alterColumn', 'civicrm_action_schedule', 'name', "varchar(64) NOT NULL COMMENT 'Name of the action(reminder)'");
$this->addTask(ts('Create index %1', [1 => 'civicrm_action_schedule.UI_name']), 'addIndex', 'civicrm_action_schedule', 'name', 'UI');
$this->addTask('Add fields to civicrm_mail_settings to allow more flexibility for email to activity', 'addMailSettingsFields');
$this->addTask('Add cache_fill_took column to Group table', 'addColumn', 'civicrm_group', 'cache_fill_took', "DECIMAL(10,3) COMMENT 'Seconds taken to fill smart group cache'", FALSE);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion xml/schema/Contact/Group.xml
Expand Up @@ -183,7 +183,7 @@
<comment>Seconds taken to fill smart group cache</comment>
<required>false</required>
<readonly>true</readonly>
<add>5.65</add>
<add>5.66</add>
</field>
<field>
<name>refresh_date</name>
Expand Down

0 comments on commit 0d3f7b8

Please sign in to comment.