mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2026-01-19 03:49:15 -05:00
9 lines
233 B
SQL
9 lines
233 B
SQL
INSERT INTO "worldTravelCountryRegions" (id, name, country_code)
|
|
VALUES
|
|
('GB-ENG', 'England', 'gb'),
|
|
('GB-NIR', 'Northern Ireland', 'gb'),
|
|
('GB-SCT', 'Scotland', 'gb'),
|
|
('GB-WLS', 'Wales', 'gb')
|
|
|
|
ON CONFLICT (id) DO NOTHING;
|