mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-05 13:15:18 +02:00
Add country regions for Germany, South Africa, Australia, New Zealand, Egypt, Brazil, China
This commit is contained in:
parent
3887ac845e
commit
61458b3cc2
12 changed files with 510 additions and 2 deletions
20
sql/013_nz.sql
Normal file
20
sql/013_nz.sql
Normal file
|
@ -0,0 +1,20 @@
|
|||
INSERT INTO "worldTravelCountryRegions" (id, name, country_code)
|
||||
VALUES
|
||||
('NZ-N', 'Northland', 'nz'),
|
||||
('NZ-AUK', 'Auckland', 'nz'),
|
||||
('NZ-WKO', 'Waikato', 'nz'),
|
||||
('NZ-BOP', 'Bay of Plenty', 'nz'),
|
||||
('NZ-GIS', 'Gisborne', 'nz'),
|
||||
('NZ-HKB', 'Hawke''s Bay', 'nz'),
|
||||
('NZ-TKI', 'Taranaki', 'nz'),
|
||||
('NZ-MWT', 'Manawatū-Whanganui', 'nz'),
|
||||
('NZ-WGN', 'Wellington', 'nz'),
|
||||
('NZ-TAS', 'Tasman', 'nz'),
|
||||
('NZ-NEL', 'Nelson', 'nz'),
|
||||
('NZ-MBH', 'Marlborough', 'nz'),
|
||||
('NZ-WTC', 'West Coast', 'nz'),
|
||||
('NZ-CAN', 'Canterbury', 'nz'),
|
||||
('NZ-OTA', 'Otago', 'nz'),
|
||||
('NZ-STL', 'Southland', 'nz')
|
||||
|
||||
ON CONFLICT (id) DO NOTHING;
|
Loading…
Add table
Add a link
Reference in a new issue