feat(rsvp): sync reading position to cloud via book_configs (#3801)
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user