Skip to content

Commit c3d68c9

Browse files
committed
Refactor database schema: remove obsolete TODOs and fix file numbering
1 parent 63416df commit c3d68c9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/db/pkg/sqlc/schema/05_flow.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ CREATE TABLE flow_edge (
5656
CREATE INDEX flow_edge_idx1 ON flow_edge (flow_id, source_id, target_id);
5757

5858

59-
-- TODO: move conditions to new condition table
59+
6060
CREATE 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+
6868
CREATE 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+
8484
CREATE TABLE flow_node_condition (
8585
flow_node_id BLOB NOT NULL PRIMARY KEY,
8686
expression TEXT NOT NULL
File renamed without changes.

0 commit comments

Comments
 (0)