fix: include title in db schema

This commit is contained in:
2026-03-02 18:42:03 +00:00
parent 2ae9479943
commit 1f6d92b1a8
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,