Skip to content
Snippets Groups Projects
Unverified Commit 7568a7cf authored by Eileen McNaughton's avatar Eileen McNaughton Committed by GitHub
Browse files

Merge pull request #19802 from demeritcowboy/carmarthenshire

#2027 - Fix state/province abbreviation for Carmarthenshire
parents 6ba59698 b1af84b7
Branches
Tags
No related merge requests found
......@@ -2,3 +2,8 @@
DROP VIEW IF EXISTS civicrm_view_case_activity_upcoming;
DROP VIEW IF EXISTS civicrm_view_case_activity_recent;
UPDATE civicrm_state_province s
INNER JOIN civicrm_country c
on c.id = s.country_id AND c.name = 'United Kingdom' AND s.name = 'Carmarthenshire' AND s.abbreviation = 'CRF'
SET s.abbreviation = 'CMN';
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -4125,7 +4125,7 @@ INSERT INTO civicrm_state_province (id, country_id, abbreviation, name) VALUES
(NULL, 1226, "BGE", "Bridgend"),
(NULL, 1226, "CAY", "Caerphilly"),
(NULL, 1226, "CRF", "Cardiff"),
(NULL, 1226, "CRF", "Carmarthenshire"),
(NULL, 1226, "CMN", "Carmarthenshire"),
(NULL, 1226, "CGN", "Ceredigion"),
(NULL, 1226, "CWY", "Conwy"),
(NULL, 1226, "DEN", "Denbighshire"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment