summaryrefslogtreecommitdiff
path: root/db/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrations')
-rw-r--r--db/migrations/20250802140659_mountain_passes.sql12
1 files changed, 12 insertions, 0 deletions
diff --git a/db/migrations/20250802140659_mountain_passes.sql b/db/migrations/20250802140659_mountain_passes.sql
new file mode 100644
index 0000000..afe3218
--- /dev/null
+++ b/db/migrations/20250802140659_mountain_passes.sql
@@ -0,0 +1,12 @@
+-- migrate:up
+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
+);
+
+-- migrate:down
+drop table mountain_passes;