-
-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10359 from JMAConsulting/CRM-20576
CRM-20576, changed length of civicrm_batch.title to 255
- Loading branch information
Showing
3 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
{* 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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters