Collect is_unmessagable, and public_key.

This commit is contained in:
Anton Roslund 2025-08-06 19:48:26 +02:00
parent a7b99c3027
commit 1ee526caf7
3 changed files with 30 additions and 15 deletions

View file

@ -0,0 +1,3 @@
-- AlterTable
ALTER TABLE `nodes` ADD COLUMN `is_unmessagable` BOOLEAN NULL,
ADD COLUMN `public_key` VARCHAR(191) NULL;

View file

@ -21,6 +21,8 @@ model Node {
hardware_model Int
role Int
is_licensed Boolean?
public_key String?
is_unmessagable Boolean?
firmware_version String?
region Int?