From 5bae8b41b268ac4a5fc841c113a1307150181159 Mon Sep 17 00:00:00 2001 From: TheNoxium Date: Fri, 12 Sep 2025 19:07:05 +0500 Subject: [PATCH] feat: node_link_table --- orm/tables/process.py | 1 + 1 file changed, 1 insertion(+) diff --git a/orm/tables/process.py b/orm/tables/process.py index 2253874..158336e 100644 --- a/orm/tables/process.py +++ b/orm/tables/process.py @@ -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={}),