Capture edges from traceroutes

This commit is contained in:
Anton Roslund 2026-01-06 16:39:39 +01:00
parent 3cfb7e7dff
commit 57dce4f099
4 changed files with 141 additions and 1 deletions

View file

@ -347,4 +347,28 @@ model ChannelUtilizationStats {
@@index([channel_id])
@@index([recorded_at])
@@map("channel_utilization_stats")
}
model Edge {
id BigInt @id @default(autoincrement())
from_node_id BigInt
to_node_id BigInt
snr Int
from_latitude Int?
from_longitude Int?
to_latitude Int?
to_longitude Int?
packet_id BigInt
channel_id String?
gateway_id BigInt?
source String
created_at DateTime @default(now())
updated_at DateTime @default(now()) @updatedAt
@@index(from_node_id)
@@index(to_node_id)
@@index(created_at)
@@index([from_node_id, to_node_id])
@@map("edges")
}