mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-08-02 03:35:18 +02:00
8 lines
233 B
SQL
8 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;
|