drupal-civicrm/sites/all/modules/civicrm/CRM/Upgrade/Incremental/sql/4.7.20.mysql.tpl
2018-01-14 13:10:16 +00:00

11 lines
298 B
Smarty

{* file to handle db changes in 4.7.20 during upgrade *}
-- CRM-20576
{if $multilingual}
{foreach from=$locales item=locale}
ALTER TABLE civicrm_batch CHANGE title_{$locale} title_{$locale} varchar(255);
{/foreach}
{else}
ALTER TABLE civicrm_batch CHANGE title title varchar(255);
{/if}