CRM-16597: Current naming of pledge reports is very confusing and needs to be changed
[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
3197dd01 7 `civicrm_option_value` (`option_group_id`, {localize field='label'}`label`{/localize}, `value`, `name`, `grouping`, `filter`, `is_default`, `weight`, `description`, `is_optgroup`, `is_reserved`, `is_active`, `component_id`, `visibility_id`)
95974e8e
DG
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
5002e6c1 19-- CRM-16597
20UPDATE civicrm_option_value
21SET label_{$locale} = '{ts escape="sql"}Pledge Detail Report{/ts}', description_{$locale} = '{ts escape="sql"}List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.{/ts}'
22WHERE option_group_id = @option_group_id_report AND name = 'CRM_Report_Form_Pledge_Detail';
23
24UPDATE civicrm_option_value
25SET description_{$locale} = '{ts escape="sql"}Groups and totals pledges by criteria including contact, time period, pledge status, location, etc.{/ts}'
26WHERE option_group_id = @option_group_id_report AND name = 'CRM_Report_Form_Pledge_Summary';
27
28UPDATE civicrm_report_instance
29SET title = '{ts escape="sql"}Pledge Detail{/ts}', description_{$locale} = '{ts escape="sql"}List of pledges including amount pledged, pledge status, next payment date, balance due, total amount paid etc.{/ts}'
30WHERE report_id = 'pledge/detail';
31
0982ca95
DG
32-- CRM-17503 PayPal Express processor type can support recurring payments
33UPDATE civicrm_payment_processor_type pp
34LEFT JOIN civicrm_payment_processor p ON p.payment_processor_type_id = pp.id
35SET pp.is_recur = 1, p.is_recur = 1
c50ec08e
CW
36WHERE pp.name='PayPal_Express';
37
b3114a81 38UPDATE civicrm_preferences_date SET description = '{ts escape="sql"}Used in search forms and for relationships.{/ts}'
c50ec08e 39WHERE name = 'searchDate';
7dbb67ae
DG
40
41--CRM-16761 Self service cancel or transfer for events
42ALTER TABLE civicrm_event
43 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.',
44 ADD COLUMN allow_selfcancelxfer TINYINT(4) DEFAULT '0' COMMENT 'Allow self service cancellation or transfer for event?';
45ALTER TABLE civicrm_participant
46 ADD COLUMN transferred_to_contact_id INT(10) unsigned DEFAULT NULL COMMENT 'Contact to which the event registration is transferred',
47 ADD CONSTRAINT `FK_civicrm_participant_transferred_to_contact_id` FOREIGN KEY (`transferred_to_contact_id`) REFERENCES `civicrm_contact` (`id`) ON DELETE SET NULL;
48
49INSERT INTO civicrm_participant_status_type(name, {localize field='label'}label{/localize}, class, is_reserved, is_active, is_counted, weight, visibility_id)
4f715c48 50VALUES ('Transferred', {localize}'{ts escape="sql"}Transferred{/ts}'{/localize}, 'Negative', 1, 1, 0, 16, 2);
adaa01fa
DG
51
52{include file='../CRM/Upgrade/4.7.beta1.msg_template/civicrm_msg_template.tpl'}