Merge pull request #19435 from civicrm/5.34
[civicrm-core.git] / CRM / Upgrade / Incremental / sql / 4.5.3.mysql.tpl
1 {* file to handle db changes in 4.5.3 during upgrade *}
2
3 -- CRM-15475
4 SELECT @membershipStatusId := id FROM civicrm_membership_status WHERE name = 'Cancelled';
5 SELECT @membershipStatusWeight := max(weight) + 1 FROM civicrm_membership_status;
6
7 INSERT INTO civicrm_membership_status (id, name, {localize field='label'}label{/localize}, start_event, start_event_adjust_unit, start_event_adjust_interval, end_event, end_event_adjust_unit, end_event_adjust_interval, is_current_member, is_admin, weight, is_default, is_active, is_reserved)
8 VALUES (@membershipStatusId, 'Cancelled', {localize}'{ts escape="sql"}Cancelled{/ts}'{/localize}, 'join_date', null, null, 'join_date', null, null, 0, 0, @membershipStatusWeight, 0, 0, 1)
9 ON DUPLICATE KEY UPDATE is_reserved = 1;
10
11 -- CRM-15558
12 ALTER TABLE `civicrm_mailing_bounce_type` CHANGE `name` `name` VARCHAR( 24 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'Type of bounce';