···11+-- Create the posts_made table
22+CREATE TABLE IF NOT EXISTS posts_made (
33+ createdAt TEXT NOT NULL, -- ISO8601 timestamp string of when we recorded a post was made
44+ subject TEXT NOT NULL
55+);
66+77+-- Index for faster lookup by subject
88+CREATE INDEX IF NOT EXISTS idx_posts_made_subject ON posts_made(subject);