chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:32:25 +08:00
commit e014feafe1
2285 changed files with 1131979 additions and 0 deletions
@@ -0,0 +1,17 @@
BEGIN;
CREATE TABLE Regions (
id SERIAL UNIQUE NOT NULL,
code VARCHAR(4) UNIQUE NOT NULL,
capital VARCHAR(10) NOT NULL,
name VARCHAR(255) UNIQUE NOT NULL
);
COPY regions (id, code, capital, name) FROM stdin WITH (HEADER);
id code capital name
1 01 97105 Guadeloupe
2 02 97209 Martinique
3 03 97302 Guyane
\.
COMMIT;