CRM-16876 Set country names to UPPERCASE - rebasing.
authorDave Greenberg <dave@civicrm.org>
Wed, 29 Jul 2015 23:27:10 +0000 (16:27 -0700)
committerDave Greenberg <dave@civicrm.org>
Wed, 29 Jul 2015 23:27:10 +0000 (16:27 -0700)
----------------------------------------
* CRM-16876: Display Country in uppercase so that mailing labels comply with postal regulations
  https://issues.civicrm.org/jira/browse/CRM-16876

CRM/Upgrade/Incremental/sql/4.7.alpha1.mysql.tpl

index 238daaf4f27c816e0524a85140dbc8dfe28a7e9b..3de4e3b9a5398ce324bdaee5a0e36b7477b3fb62 100644 (file)
@@ -35,3 +35,6 @@ ALTER TABLE civicrm_payment_processor_type
 ADD COLUMN
 `payment_instrument_id` int unsigned   DEFAULT 1 COMMENT 'Payment Instrument ID';
 
+-- CRM-16876 Set country names to UPPERCASE
+UPDATE civicrm_country SET `name` = UPPER( `name` );
+