1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-03 20:25:18 +02:00
AdventureLog/sql/003_ca.sql

18 lines
439 B
MySQL
Raw Normal View History

INSERT INTO "worldTravelCountryRegions" (name, country_code)
VALUES
('Alberta', 'ca'),
('British Columbia', 'ca'),
('Manitoba', 'ca'),
('New Brunswick', 'ca'),
('Newfoundland and Labrador', 'ca'),
('Nova Scotia', 'ca'),
('Ontario', 'ca'),
('Prince Edward Island', 'ca'),
('Quebec', 'ca'),
('Saskatchewan', 'ca'),
('Northwest Territories', 'ca'),
('Nunavut', 'ca'),
('Yukon', 'ca')
ON CONFLICT (name) DO NOTHING;