From c5c17c7d7b6f17f17a00a587a04e9e58c2914c05 Mon Sep 17 00:00:00 2001 From: Timo Schneider Date: Fri, 7 Jun 2024 10:09:01 +0200 Subject: [PATCH] fixed typo --- init/00_InitDB.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/00_InitDB.sql b/init/00_InitDB.sql index 443b78d..a6d20c5 100644 --- a/init/00_InitDB.sql +++ b/init/00_InitDB.sql @@ -33,7 +33,7 @@ CREATE TABLE Comments deleted timestamp WITH TIME ZONE default NULL ); -CREATE TABLE Reaction +CREATE TABLE Reactions ( id bigserial PRIMARY KEY, userid bigserial REFERENCES Users NOT NULL,