Add country regions for GB, FR, AR, CA, MX, and DE

This commit is contained in:
Sean Morley
2024-04-12 13:39:08 +00:00
parent d9116b2a15
commit 3887ac845e
14 changed files with 891 additions and 89 deletions

8
sql/006_gb.sql Normal file
View File

@@ -0,0 +1,8 @@
INSERT INTO "worldTravelCountryRegions" (id, name, country_code)
VALUES
('GB-ENG', 'England', 'gb'),
('GB-NIR', 'Northern Ireland', 'gb'),
('GB-SCT', 'Scotland', 'gb'),
('GB-WLS', 'Wales', 'gb')
ON CONFLICT (id) DO NOTHING;