drupal-civicrm/sites/all/modules/civicrm/CRM/Upgrade/Incremental/sql/4.7.20.mysql.tpl

11 lines
298 B
Smarty
Raw Normal View History

2018-01-14 15:10:16 +02:00
{* 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}