-- CRM-21378 Ensure that email abuse reports are treated as spam
SELECT @bounceTypeID := max(id) FROM civicrm_mailing_bounce_type WHERE name = 'Spam';
INSERT INTO civicrm_mailing_bounce_pattern (bounce_type_id, pattern) VALUES (@bounceTypeID, 'abuse report');
+
+
+-- CRM-21532 Add French state/departments
+SELECT @country_id := id from civicrm_country where name = 'France' AND iso_code = 'FR';
+INSERT INTO `civicrm_state_province` (`id`, `country_id`, `abbreviation`, `name`) VALUES
+(NULL, @country_id, "52", "Haute-Marne");
\ No newline at end of file
(NULL, 1076, "WF", "Wallis-et-Futuna"),
(NULL, 1076, "NC", "Nouvelle-Calédonie"),
+-- CRM-21532 Add French state/departments
+(NULL, 1076, "52", "Haute-Marne"),
+
-- Add states for: Barbados and Antigua and Barbuda
(NULL, 1009, "03", "Saint George"),
(NULL, 1009, "04", "Saint John"),