From fe66d6ea0707fe0fbbdad28190ced364357d8072 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Fri, 11 Dec 2015 07:58:08 +0000 Subject: [PATCH] CRM-17693 Increase default string table size to be 255. 255 Characters seems fairly common on the db and matches max length of contribution page title --- CRM/Export/BAO/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Export/BAO/Export.php b/CRM/Export/BAO/Export.php index 44e150f172..7ce5e0a555 100644 --- a/CRM/Export/BAO/Export.php +++ b/CRM/Export/BAO/Export.php @@ -1390,7 +1390,7 @@ INSERT INTO {$componentTable} SELECT distinct gc.contact_id FROM civicrm_group_c $sqlColumns[$fieldName] = "$fieldName varchar({$query->_fields[$field]['maxlength']})"; } else { - $sqlColumns[$fieldName] = "$fieldName varchar(64)"; + $sqlColumns[$fieldName] = "$fieldName varchar(255)"; } break; -- 2.25.1