Skip to content

Commit

Permalink
move upgrade code to 4.7.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Jitendra Purohit committed Apr 5, 2017
1 parent af676f1 commit 2756229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/Upgrade/Incremental/php/FourSeven.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,6 @@ public function upgrade_4_7_16($rev) {
public function upgrade_4_7_18($rev) {
$this->addTask('Update Kenyan Provinces', 'updateKenyanProvinces');
$this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
$this->addTask('Add is_public column to civicrm_custom_group', 'addColumn',
'civicrm_custom_group', 'is_public', "boolean DEFAULT '1' COMMENT 'Is this property public?'");
}

/**
Expand All @@ -342,6 +340,8 @@ public function upgrade_4_7_19($rev) {
'civicrm_sms_provider', 'domain_id', 'int(10) unsigned', "Which Domain is this sms provier for");
$this->addTask('CRM-19961 - Populate domain id table and perhaps add foreign key', 'populateSMSProviderDomainId');
$this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);
$this->addTask('Add is_public column to civicrm_custom_group', 'addColumn',
'civicrm_custom_group', 'is_public', "boolean DEFAULT '1' COMMENT 'Is this property public?'");
}

/*
Expand Down

0 comments on commit 2756229

Please sign in to comment.