feat: node_link_table

This commit is contained in:
TheNoxium
2025-09-12 19:07:05 +05:00
parent 4367d261e7
commit 5bae8b41b2

View File

@@ -102,6 +102,7 @@ node_link_table = Table(
primary_key=True, nullable=False),
Column("link_name", String(20), nullable=False),
Column("node_id", UnsignedInt, ForeignKey("ps_node.id"), nullable=False),
Column("link_point_id", UnsignedInt, nullable=False),
Column("next_node_id", UnsignedInt, ForeignKey(
"ps_node.id"), nullable=False),
Column("settings", JSON, default={}),