154 adds hide_from_continue to user_watch_progress (backs the ABS remove/readd-to-continue-listening endpoints). 155 creates abs_rss_feeds for the upcoming RSS surface. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
365 B
SQL
8 lines
365 B
SQL
-- Toggle for hiding an in-progress book from the Continue Listening
|
|
-- shelf without affecting the progress row itself. Used by the
|
|
-- ABS-compat /me/progress/{itemId}/remove-from-continue-listening +
|
|
-- /readd-to-continue-listening endpoints.
|
|
|
|
ALTER TABLE public.user_watch_progress
|
|
ADD COLUMN IF NOT EXISTS hide_from_continue boolean NOT NULL DEFAULT false;
|