CRM-18241: Change field length of civicrm_option_value.label from 255 to 512
authoryashodha <yashodha.chaku@webaccessglobal.com>
Fri, 1 Apr 2016 05:48:27 +0000 (11:18 +0530)
committeryashodha <yashodha.chaku@webaccessglobal.com>
Fri, 1 Apr 2016 05:48:27 +0000 (11:18 +0530)
----------------------------------------
* CRM-18241: Change field length of civicrm_option_value.label from 255 to 512
  https://issues.civicrm.org/jira/browse/CRM-18241

CRM/Upgrade/Incremental/sql/4.7.5.mysql.tpl
xml/schema/Core/OptionValue.xml

index 1023eb3b9655d5b6cad2e34e78b0a55ac83128af..d746eabda96bf603e9e067bf94969c28dd743ed1 100644 (file)
@@ -17,8 +17,11 @@ SET
   nav2.has_separator = 1,
   nav2.label = 'Extensions';
 
---CRM-18327 filter value missed on the contact deleted by merge activity --
+-- CRM-18327 filter value missed on the contact deleted by merge activity --
 UPDATE civicrm_option_value ov
 LEFT JOIN civicrm_option_group og ON og.id = ov.option_group_id
 SET filter = 1
 WHERE ov.name = 'Contact Deleted by Merge' AND og.name = 'activity_type'
+
+-- CRM-18241 Change field length of civicrm_option_value.label from 255 to 512 --
+ALTER TABLE civicrm_option_value CHANGE label label varchar( 512 ) DEFAULT NULL ;
\ No newline at end of file
index 31d7fc20c3bc3d79786031f218c810f0ef819a42..bfc1a6da6d282e4bca9b49934847020917826857 100644 (file)
@@ -46,7 +46,7 @@
     <title>Option Label</title>
     <type>varchar</type>
     <required>true</required>
-    <length>255</length>
+    <length>512</length>
     <localizable>true</localizable>
     <comment>Option string as displayed to users - e.g. the label in an HTML OPTION tag.</comment>
     <add>1.5</add>