tangled.org trending bluesky account
12
fork

Configure Feed

Select the types of activity you want to include in your feed.

wip

+8
+8
bot/migrations/20250914172800_create_posts_made.sql
··· 1 + -- Create the posts_made table 2 + CREATE TABLE IF NOT EXISTS posts_made ( 3 + createdAt TEXT NOT NULL, -- ISO8601 timestamp string of when we recorded a post was made 4 + subject TEXT NOT NULL 5 + ); 6 + 7 + -- Index for faster lookup by subject 8 + CREATE INDEX IF NOT EXISTS idx_posts_made_subject ON posts_made(subject);