fix(db): missing post ID in db schema

Caused surprisingly little errors. It only broke the interaction graph.
This commit is contained in:
2026-03-04 20:03:48 +00:00
parent b6815c490a
commit 4e99b77492
3 changed files with 7 additions and 3 deletions

View File

@@ -30,6 +30,8 @@ CREATE TABLE events (
/* Required Fields */
id SERIAL PRIMARY KEY,
dataset_id INTEGER NOT NULL,
post_id VARCHAR(255) NOT NULL,
type VARCHAR(255) NOT NULL,
author VARCHAR(255) NOT NULL,