Files
sql/postgis.sql

8 lines
131 B
MySQL
Raw Normal View History

2025-09-02 22:59:01 +02:00
CREATE TABLE route (
id int primary key,
source int,
target int,
cost double precision,
reverse_cost double precision
);