a tool for shared writing and social publishing

add archived col to leaflets in publicaitons

+4
+3
supabase/database.types.ts
··· 580 580 } 581 581 leaflets_in_publications: { 582 582 Row: { 583 + archived: boolean | null 583 584 description: string 584 585 doc: string | null 585 586 leaflet: string ··· 587 588 title: string 588 589 } 589 590 Insert: { 591 + archived?: boolean | null 590 592 description?: string 591 593 doc?: string | null 592 594 leaflet: string ··· 594 596 title?: string 595 597 } 596 598 Update: { 599 + archived?: boolean | null 597 600 description?: string 598 601 doc?: string | null 599 602 leaflet?: string
+1
supabase/migrations/20251120215250_add_archived_col_to_leaflets_in_publications.sql
··· 1 + alter table "public"."leaflets_in_publications" add column "archived" boolean;