A lexicon-driven AppView for ATProto. happyview.dev
backfill firehose jetstream atproto appview oauth lexicon
8
fork

Configure Feed

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

feat: add event_logs migration

Trezy a34b3d9d a5a3ca1c

+13
+13
migrations/20260223000000_create_event_logs.sql
··· 1 + CREATE TABLE event_logs ( 2 + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), 3 + event_type TEXT NOT NULL, 4 + severity TEXT NOT NULL DEFAULT 'info', 5 + actor_did TEXT, 6 + subject TEXT, 7 + detail JSONB NOT NULL DEFAULT '{}', 8 + created_at TIMESTAMPTZ NOT NULL DEFAULT NOW() 9 + ); 10 + 11 + CREATE INDEX idx_event_logs_event_type ON event_logs (event_type); 12 + CREATE INDEX idx_event_logs_severity ON event_logs (severity); 13 + CREATE INDEX idx_event_logs_created_at ON event_logs (created_at);