CRM-16901 fix - Offline Recurring Payments
[civicrm-core.git] / CRM / Upgrade / Incremental / sql / 4.7.beta1.mysql.tpl
CommitLineData
f2720c51 1{* file to handle db changes in 4.7.beta1 during upgrade *}
7a2916e4 2
95974e8e
DG
3-- CRM-16901 Recurring contributions summary report template
4SELECT @option_group_id_report := max(id) from civicrm_option_group where name = 'report_template';
5SELECT @contributeCompId := max(id) FROM civicrm_component where name = 'CiviContribute';
6INSERT INTO
7 `civicrm_option_value` (`option_group_id`, `label`, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`)
8VALUES
9 (@option_group_id_report, {localize}'{ts escape="sql"}Recurring Contributions Summary{/ts}'{/localize}, 'contribute/recursummary', 'CRM_Report_Form_Contribute_RecurSummary', NULL, 0, NULL, 49, {localize}'{ts escape="sql"}Provides simple summary for each payment instrument for which there are recurring contributions (e.g. Credit Card, Standing Order, Direct Debit etc.), showing within a given date range.{/ts}'{/localize}, 0, 0, 1, @contributeCompId, NULL);
10
7a2916e4
CW
11SELECT @parent_id := id from `civicrm_navigation` where name = 'Administration Console' AND domain_id = {$domainID};
12INSERT INTO civicrm_navigation
13( domain_id, url, label, name, permission, permission_operator, parent_id, is_active, has_separator, weight )
14VALUES
c1c370a7
KB
15( {$domainID}, 'civicrm/a/#/status', '{ts escape="sql" skip="true"}System Status{/ts}', 'System Status', 'administer CiviCRM', '', @parent_id, '1', NULL, 0 );
16
0982ca95
DG
17UPDATE civicrm_contact SET is_deceased = 0 WHERE is_deceased IS NULL;
18
19-- CRM-17503 PayPal Express processor type can support recurring payments
20UPDATE civicrm_payment_processor_type pp
21LEFT JOIN civicrm_payment_processor p ON p.payment_processor_type_id = pp.id
22SET pp.is_recur = 1, p.is_recur = 1
c50ec08e
CW
23WHERE pp.name='PayPal_Express';
24
b3114a81 25UPDATE civicrm_preferences_date SET description = '{ts escape="sql"}Used in search forms and for relationships.{/ts}'
c50ec08e 26WHERE name = 'searchDate';
7dbb67ae
DG
27
28--CRM-16761 Self service cancel or transfer for events
29ALTER TABLE civicrm_event
30 ADD COLUMN selfcancelxfer_time INT(10) unsigned DEFAULT 0 COMMENT 'Number of hours prior to event start date to allow self-service cancellation or transfer.',
31 ADD COLUMN allow_selfcancelxfer TINYINT(4) DEFAULT '0' COMMENT 'Allow self service cancellation or transfer for event?';
32ALTER TABLE civicrm_participant
33 ADD COLUMN transferred_to_contact_id INT(10) unsigned DEFAULT NULL COMMENT 'Contact to which the event registration is transferred',
34 ADD CONSTRAINT `FK_civicrm_participant_transferred_to_contact_id` FOREIGN KEY (`transferred_to_contact_id`) REFERENCES `civicrm_contact` (`id`) ON DELETE SET NULL;
35
36INSERT INTO civicrm_participant_status_type(name, {localize field='label'}label{/localize}, class, is_reserved, is_active, is_counted, weight, visibility_id)
4f715c48 37VALUES ('Transferred', {localize}'{ts escape="sql"}Transferred{/ts}'{/localize}, 'Negative', 1, 1, 0, 16, 2);
adaa01fa
DG
38
39{include file='../CRM/Upgrade/4.7.beta1.msg_template/civicrm_msg_template.tpl'}