collect new snr and route back info for traceroutes

This commit is contained in:
liamcottle
2024-09-08 13:00:49 +12:00
parent e12e56a221
commit e2f354573a
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,4 @@
-- AlterTable
ALTER TABLE `traceroutes` ADD COLUMN `route_back` JSON NULL,
ADD COLUMN `snr_back` JSON NULL,
ADD COLUMN `snr_towards` JSON NULL;

View File

@ -242,6 +242,9 @@ model TraceRoute {
from BigInt
want_response Boolean
route Json
snr_towards Json?
route_back Json?
snr_back Json?
channel Int?
packet_id BigInt?