File tree Expand file tree Collapse file tree
packages/db/pkg/sqlc/schema Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,15 +56,15 @@ CREATE TABLE flow_edge (
5656CREATE INDEX flow_edge_idx1 ON flow_edge (flow_id, source_id, target_id);
5757
5858
59- -- TODO: move conditions to new condition table
59+
6060CREATE TABLE flow_node_for (
6161 flow_node_id BLOB NOT NULL PRIMARY KEY ,
6262 iter_count BIGINT NOT NULL ,
6363 error_handling INT8 NOT NULL ,
6464 expression TEXT NOT NULL
6565);
6666
67- -- TODO: move conditions to new condition table
67+
6868CREATE TABLE flow_node_for_each (
6969 flow_node_id BLOB NOT NULL PRIMARY KEY ,
7070 iter_expression TEXT NOT NULL ,
@@ -80,7 +80,7 @@ CREATE TABLE flow_node_http (
8080 FOREIGN KEY (delta_http_id) REFERENCES http (id) ON DELETE SET NULL
8181);
8282
83- -- TODO: move conditions to new condition table
83+
8484CREATE TABLE flow_node_condition (
8585 flow_node_id BLOB NOT NULL PRIMARY KEY ,
8686 expression TEXT NOT NULL
File renamed without changes.
You can’t perform that action at this time.
0 commit comments