summaryrefslogtreecommitdiff
path: root/db/migrations/20250802140659_mountain_passes.sql
blob: afe32189fdd4ba0e98c3aec734e1ffdf7014f01c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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;