collect new snr and route back info for traceroutes
This commit is contained in:
parent
e12e56a221
commit
e2f354573a
3 changed files with 10 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
@ -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?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue