VORKOUT-18 #2

Open
ivan.dev wants to merge 13 commits from VORKOUT-18 into main
30 changed files with 739 additions and 87 deletions
Showing only changes of commit 5bae8b41b2 - Show all commits

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