a tool for shared writing and social publishing

add archived col to leaflets in publicaitons

+4
+3
supabase/database.types.ts
··· 580 } 581 leaflets_in_publications: { 582 Row: { 583 description: string 584 doc: string | null 585 leaflet: string ··· 587 title: string 588 } 589 Insert: { 590 description?: string 591 doc?: string | null 592 leaflet: string ··· 594 title?: string 595 } 596 Update: { 597 description?: string 598 doc?: string | null 599 leaflet?: string
··· 580 } 581 leaflets_in_publications: { 582 Row: { 583 + archived: boolean | null 584 description: string 585 doc: string | null 586 leaflet: string ··· 588 title: string 589 } 590 Insert: { 591 + archived?: boolean | null 592 description?: string 593 doc?: string | null 594 leaflet: string ··· 596 title?: string 597 } 598 Update: { 599 + archived?: boolean | null 600 description?: string 601 doc?: string | null 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;