lemmy/migrations/2024-11-01-233231_add_mark_fetched_posts_as_read/up.sql
Dessalines bd0e68fb00 Add user setting to auto-mark fetched posts as read.
- Rather than apps collecting up viewed posts ids, and sending many
  mark as read requests, users can now turn this setting on, and any
  results from /post/list will be auto-marked as read.
- Fixes #5144
2024-11-01 21:17:58 -04:00

3 lines
103 B
SQL

ALTER TABLE local_user
ADD COLUMN auto_mark_fetched_posts_as_read boolean DEFAULT FALSE NOT NULL;