-- Backfill content_tsv for existing messages where it's NULL -- New messages are already handled by application code (connection.rs bulk insert) UPDATE room_message SET content_tsv = to_tsvector('simple', content) WHERE content_tsv IS NULL;