1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-06 05:35:19 +02:00

Add country regions for Germany, South Africa, Australia, New Zealand, Egypt, Brazil, China

This commit is contained in:
Sean Morley 2024-04-12 14:04:23 +00:00
parent 3887ac845e
commit 61458b3cc2
12 changed files with 510 additions and 2 deletions

13
sql/014_za.sql Normal file
View file

@ -0,0 +1,13 @@
INSERT INTO "worldTravelCountryRegions" (id, name, country_code)
VALUES
('ZA-EC', 'Eastern Cape', 'za'),
('ZA-FS', 'Free State', 'za'),
('ZA-GP', 'Gauteng', 'za'),
('ZA-KZN', 'KwaZulu-Natal', 'za'),
('ZA-LP', 'Limpopo', 'za'),
('ZA-MP', 'Mpumalanga', 'za'),
('ZA-NW', 'North West', 'za'),
('ZA-NC', 'Northern Cape', 'za'),
('ZA-WC', 'Western Cape', 'za')
ON CONFLICT (id) DO NOTHING;