mirror of
https://github.com/MeshCore-Beacon/beacon-server.git
synced 2026-09-04 19:23:44 +00:00
8 lines
223 B
SQL
8 lines
223 B
SQL
-- Copyright 2026 Beacon Contributors
|
|
-- SPDX-License-Identifier: agpl
|
|
|
|
-- 002_drop_single_hop_routes.sql
|
|
-- routes were being stored as long as the path was
|
|
-- greater than 0.
|
|
DELETE FROM known_routes WHERE hop_count < 2;
|