From 80f2e72cd4818a4c0a5b5d4afb93dc23f04208e2 Mon Sep 17 00:00:00 2001 From: Martin Kagamino Lehoux Date: Sat, 1 Aug 2026 22:40:08 +0200 Subject: feat: Download mountain passes from centcols into SQLite --- db/schema.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 db/schema.sql (limited to 'db/schema.sql') diff --git a/db/schema.sql b/db/schema.sql new file mode 100644 index 0000000..e6796c8 --- /dev/null +++ b/db/schema.sql @@ -0,0 +1,12 @@ +CREATE TABLE IF NOT EXISTS "schema_migrations" (version varchar(255) primary key); +CREATE TABLE mountain_passes ( + id integer primary key, + external_id text unique not null, + name text not null, + country_code text not null, + department_code text not null, + elevation integer not null +); +-- Dbmate schema migrations +INSERT INTO "schema_migrations" (version) VALUES + ('20250802140659'); -- cgit v1.2.3