From d5a82fff6a2a15411bcb6583e9fd782b7230e61c Mon Sep 17 00:00:00 2001 From: JMARyA Date: Mon, 7 Oct 2024 21:23:16 +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 d617aa1..fc53325 100644 --- a/migrations/0000_init.sql +++ b/migrations/0000_init.sql @@ -6,7 +6,7 @@ CREATE TABLE flows ( ended timestamptz, "next" UUID, produced UUID[], - FOREIGN KEY "next" REFERENCES flows(id) + FOREIGN KEY("next") REFERENCES flows(id) ); CREATE TABLE flow_notes (