fix: add title column to db

This was accidentally removed in a previous merge
This commit is contained in:
2026-03-03 12:41:02 +00:00
parent f4894759d7
commit 3772f83d11
2 changed files with 8 additions and 2 deletions

View File

@@ -30,7 +30,10 @@ CREATE TABLE events (
hour INTEGER NOT NULL,
weekday VARCHAR(255) NOT NULL,
/* Comments and Replies */
/* Posts Only */
title VARCHAR(255),
/* Comments Only*/
parent_id VARCHAR(255),
reply_to VARCHAR(255),
source VARCHAR(255) NOT NULL,