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={}),