CRM-15931 - civicrm_mailing_group.group_type - Cleanup inconsistent data
authorTim Otten <totten@civicrm.org>
Sat, 7 Feb 2015 14:35:26 +0000 (06:35 -0800)
committerTim Otten <totten@civicrm.org>
Sat, 7 Feb 2015 14:35:26 +0000 (06:35 -0800)
CRM/Upgrade/Incremental/sql/4.6.alpha6.mysql.tpl

index 792a930857fbac29d19c31d5ba033fbd6f29e432..dee21cb640665855e0f6b5e705efdd6e66375a5a 100644 (file)
@@ -1,3 +1,8 @@
 {* file to handle db changes in 4.6.alpha6 during upgrade *}
 
-UPDATE `civicrm_navigation` SET url = 'civicrm/api' WHERE url = 'civicrm/api/explorer';
\ No newline at end of file
+UPDATE `civicrm_navigation` SET url = 'civicrm/api' WHERE url = 'civicrm/api/explorer';
+
+-- CRM-15931
+UPDATE civicrm_mailing_group SET group_type = 'Include' WHERE group_type = 'include';
+UPDATE civicrm_mailing_group SET group_type = 'Exclude' WHERE group_type = 'exclude';
+UPDATE civicrm_mailing_group SET group_type = 'Base' WHERE group_type = 'base';