Ionosphere.tv
3
fork

Configure Feed

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

feat: add content_type, external_url, og_title, talk_rkey to mentions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+6
+6
apps/ionosphere-appview/src/db.ts
··· 236 236 try { db.exec("ALTER TABLE stream_transcripts ADD COLUMN chunk_index INTEGER NOT NULL DEFAULT 0"); } catch {} 237 237 try { db.exec("ALTER TABLE stream_diarizations ADD COLUMN chunk_index INTEGER NOT NULL DEFAULT 0"); } catch {} 238 238 239 + // Mentions table extensions for discussion page 240 + try { db.exec("ALTER TABLE mentions ADD COLUMN content_type TEXT DEFAULT 'post'"); } catch {} 241 + try { db.exec("ALTER TABLE mentions ADD COLUMN external_url TEXT"); } catch {} 242 + try { db.exec("ALTER TABLE mentions ADD COLUMN og_title TEXT"); } catch {} 243 + try { db.exec("ALTER TABLE mentions ADD COLUMN talk_rkey TEXT"); } catch {} 244 + 239 245 db.exec(` 240 246 -- Jetstream cursor for resumable indexing 241 247 CREATE TABLE IF NOT EXISTS _cursor (