a tool for shared writing and social publishing
0

Configure Feed

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

add scheduled publish columns

Jared Pereira (Apr 24, 2026, 11:02 PM EDT) ee7ab360 2336efa0

+10
+10
supabase/migrations/20260424000000_add_scheduled_publish_columns.sql
··· 1 + -- Scheduled posts: store the scheduled publish time + a snapshot of share state 2 + -- captured at scheduling, so the Inngest job can publish without the user's session. 3 + 4 + alter table "public"."leaflets_in_publications" 5 + add column "scheduled_publish_at" timestamptz, 6 + add column "scheduled_publish_data" jsonb; 7 + 8 + alter table "public"."leaflets_to_documents" 9 + add column "scheduled_publish_at" timestamptz, 10 + add column "scheduled_publish_data" jsonb;