feat: add network_diagrams table

Create NetworkDiagram SQLAlchemy model with JSONB nodes/edges, team-scoped with client/asset metadata, and Alembic migration 074.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-04-04 07:41:13 +00:00
parent 9c042c750e
commit 068baec179
3 changed files with 96 additions and 0 deletions

View File

@@ -55,6 +55,7 @@ from .fork_point import ForkPoint
from .session_handoff import SessionHandoff
from .session_resolution_output import SessionResolutionOutput
from .device_type import DeviceType
from .network_diagram import NetworkDiagram
__all__ = [
"User",
@@ -124,4 +125,5 @@ __all__ = [
"SessionHandoff",
"SessionResolutionOutput",
"DeviceType",
"NetworkDiagram",
]