8 lines
131 B
SQL
8 lines
131 B
SQL
CREATE TABLE route (
|
|
id int primary key,
|
|
source int,
|
|
target int,
|
|
cost double precision,
|
|
reverse_cost double precision
|
|
);
|