Merge pull request #19435 from civicrm/5.34
[civicrm-core.git] / CRM / Upgrade / Incremental / sql / 4.7.12.mysql.tpl
1 {* file to handle db changes in 4.7.12 during upgrade *}
2
3 -- CRM-19271
4 ALTER TABLE civicrm_action_schedule CHANGE start_action_condition start_action_condition VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_unicode_ci NULL DEFAULT NULL COMMENT 'Reminder Action';
5
6 -- CRM-19367
7 SELECT @option_group_id_fat := max(id) from civicrm_option_group where name = 'financial_account_type';
8
9 UPDATE civicrm_option_value SET {localize field="description"}description = 'Things you owe, like a grant still to be disbursed'{/localize}
10 WHERE name = 'Liability' AND option_group_id = @option_group_id_fat;