fix(db): change title type to text

Occasionally a Reddit post would have a long title, and would break in the schema.
This commit is contained in:
2026-03-17 19:49:03 +00:00
parent 2a00384a55
commit 71998c450e

View File

@@ -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),