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:
parent
3887ac845e
commit
61458b3cc2
12 changed files with 510 additions and 2 deletions
12
sql/012_au.sql
Normal file
12
sql/012_au.sql
Normal file
|
@ -0,0 +1,12 @@
|
|||
INSERT INTO "worldTravelCountryRegions" (id, name, country_code)
|
||||
VALUES
|
||||
('AU-NSW', 'New South Wales', 'au'),
|
||||
('AU-VIC', 'Victoria', 'au'),
|
||||
('AU-QLD', 'Queensland', 'au'),
|
||||
('AU-SA', 'South Australia', 'au'),
|
||||
('AU-WA', 'Western Australia', 'au'),
|
||||
('AU-TAS', 'Tasmania', 'au'),
|
||||
('AU-NT', 'Northern Territory', 'au'),
|
||||
('AU-ACT', 'Australian Capital Territory', 'au')
|
||||
|
||||
ON CONFLICT (id) DO NOTHING;
|
Loading…
Add table
Add a link
Reference in a new issue