mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-30 18:29:37 +02:00
13 lines
403 B
SQL
13 lines
403 B
SQL
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;
|