You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
358 B
SQL
8 lines
358 B
SQL
-- Close the world road loop: last town connects back to the first (and reverse).
|
|
-- Town ids: 1 Willowdale .. 7 Starfall (see 000006 / 000015). Distance is approximate; runtime recomputes from waypoints.
|
|
|
|
INSERT INTO roads (from_town_id, to_town_id, distance) VALUES
|
|
(7, 1, 4000.0),
|
|
(1, 7, 4000.0)
|
|
ON CONFLICT (from_town_id, to_town_id) DO NOTHING;
|