feat: node_link_table
This commit is contained in:
@@ -102,6 +102,7 @@ node_link_table = Table(
|
|||||||
primary_key=True, nullable=False),
|
primary_key=True, nullable=False),
|
||||||
Column("link_name", String(20), nullable=False),
|
Column("link_name", String(20), nullable=False),
|
||||||
Column("node_id", UnsignedInt, ForeignKey("ps_node.id"), 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(
|
Column("next_node_id", UnsignedInt, ForeignKey(
|
||||||
"ps_node.id"), nullable=False),
|
"ps_node.id"), nullable=False),
|
||||||
Column("settings", JSON, default={}),
|
Column("settings", JSON, default={}),
|
||||||
|
Reference in New Issue
Block a user