From 71998c450e13007d4e6254591415b467d9752661 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Tue, 17 Mar 2026 19:49:03 +0000 Subject: [PATCH] fix(db): change title type to text Occasionally a Reddit post would have a long title, and would break in the schema. --- server/db/schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/db/schema.sql b/server/db/schema.sql index 4550633..5bec116 100644 --- a/server/db/schema.sql +++ b/server/db/schema.sql @@ -43,7 +43,7 @@ CREATE TABLE events ( weekday VARCHAR(255) NOT NULL, /* Posts Only */ - title VARCHAR(255), + title TEXT, /* Comments Only*/ parent_id VARCHAR(255),