diff options
Diffstat (limited to 'db/schema.sql')
| -rw-r--r-- | db/schema.sql | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/db/schema.sql b/db/schema.sql index e6796c8..398bfea 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -6,7 +6,16 @@ CREATE TABLE mountain_passes ( country_code text not null, department_code text not null, elevation integer not null +, latitude real, longitude real); +CREATE TABLE osm_passes ( + id integer primary key, + osm_id integer unique not null, + name text, + elevation integer, + latitude real not null, + longitude real not null ); -- Dbmate schema migrations INSERT INTO "schema_migrations" (version) VALUES - ('20250802140659'); + ('20250802140659'), + ('20260802090000'); |