feat: add capabilities column to cluster_nodes (migration 005)

This commit is contained in:
Zac Gaetano 2026-05-20 14:17:44 -04:00
parent 28a97e2ba3
commit 86d2960b60

View file

@ -0,0 +1,4 @@
-- Add hardware capabilities column to cluster_nodes
-- Stores GPUs and capture cards detected/reported by node-agent
ALTER TABLE cluster_nodes
ADD COLUMN IF NOT EXISTS capabilities JSONB DEFAULT '{}';