Merge pull request #19435 from civicrm/5.34
[civicrm-core.git] / CRM / Upgrade / Incremental / sql / 4.7.beta8.mysql.tpl
CommitLineData
d9883c82
J
1{* file to handle db changes in 4.7.beta8 during upgrade *}
2
3-- CRM-17552
4UPDATE civicrm_membership_block cmb JOIN civicrm_price_set_entity cpse ON cmb.entity_table = cpse.entity_table AND cmb.entity_id = cpse.entity_id JOIN civicrm_price_set cps ON cpse.price_set_id = cps.id SET cmb.is_required = 1 WHERE cmb.entity_table = 'civicrm_contribution_page' AND cps.is_quick_config = 0;
4603fb38
CW
5
6-- CRM-17429 - Old contributions may be using this payment processor type, so we'll disable rather than delete it for existing installs:
7UPDATE civicrm_payment_processor_type SET is_active = 0 WHERE name = 'Google_Checkout';
8UPDATE civicrm_payment_processor pp, civicrm_payment_processor_type ppt SET pp.is_active = 0 WHERE pp.payment_processor_type_id = ppt.id AND ppt.name = 'Google_Checkout';
2f3e0ab6
WA
9
10-- CRM-17815
11{include file='../CRM/Upgrade/4.7.beta8.msg_template/civicrm_msg_template.tpl'}
12