From b4df75dcb6cfb52f868ae790ede64c3d3a017ba9 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Mon, 7 Oct 2024 21:28:07 +0200 Subject: [PATCH] fix --- migrations/0000_init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/0000_init.sql b/migrations/0000_init.sql index fc53325..df24d2d 100644 --- a/migrations/0000_init.sql +++ b/migrations/0000_init.sql @@ -14,7 +14,7 @@ CREATE TABLE flow_notes ( time timestamptz NOT NULL DEFAULT current_timestamp, content TEXT NOT NULL, on_flow UUID NOT NULL, - FOREIGN KEY on_flow REFERENCES flows(id) + FOREIGN KEY(on_flow) REFERENCES flows(id) ); CREATE TABLE transactions (