feat(rsvp): sync reading position to cloud via book_configs (#3801)

This commit is contained in:
Lex Moulton
2026-04-09 09:52:49 -04:00
committed by GitHub
parent 1e259e87b2
commit baee85e7c8
8 changed files with 120 additions and 6 deletions
+1
View File
@@ -37,6 +37,7 @@ CREATE TABLE public.book_configs (
location text NULL,
xpointer text NULL,
progress jsonb NULL,
rsvp_position text NULL,
search_config jsonb NULL,
view_settings jsonb NULL,
created_at timestamp with time zone NULL DEFAULT now(),
@@ -0,0 +1,4 @@
-- Migration 001: Add rsvp_position column to book_configs
ALTER TABLE public.book_configs
ADD COLUMN IF NOT EXISTS rsvp_position text NULL;