a tool for shared writing and social publishing
304
fork

Configure Feed

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

at main 6 lines 208 B view raw
1ALTER TABLE documents ADD COLUMN indexed boolean NOT NULL DEFAULT true; 2 3CREATE INDEX idx_documents_ranking 4ON documents (sort_date DESC) 5INCLUDE (uri, bsky_like_count, recommend_count) 6WHERE indexed = true;