For now? I'm experimenting on an old concept.
1

Configure Feed

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

refactor: Delete federationlevel on rollback, add comment dividers


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 15, 2026, 11:07 PM +0200) fd5a6705 5cec38b6

+2 -2
+2 -2
db/migrations/20260704175437_initial.sql
··· 115 115 COMMENT ON COLUMN usersessions.session_key IS 'Secret hash that on match allows a session to be revived. Upon successful revival, the id is replaced with the id of the session that revived the user session.'; 116 116 COMMENT ON COLUMN usersessions.last_touched IS 'Changed on INSERT or UPDATE to allow garbage cleanup of user sessions if they are older than 30 days.'; 117 117 118 - -- Indices for performance 118 + -- Indices for performance ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 119 119 CREATE INDEX IF NOT EXISTS idx_items_author ON items(author_id); 120 120 CREATE INDEX IF NOT EXISTS idx_timelines_ts ON timelines(timestamp); 121 121 CREATE INDEX IF NOT EXISTS idx_users_instance ON users(instance_id); ··· 137 137 138 138 DROP TYPE IF EXISTS item_type_enum; 139 139 DROP TYPE IF EXISTS log_level; 140 - DROP COMMENT IF EXISTS 140 + DROP TYPE IF EXISTS federationlevel;