store neighbour info directly in the nodes table

This commit is contained in:
liamcottle
2024-03-23 22:56:03 +13:00
parent 22dceaac54
commit d7252c9962
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE `nodes` ADD COLUMN `neighbour_broadcast_interval_secs` INTEGER NULL,
ADD COLUMN `neighbours` JSON NULL;