tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
27
pulls
pipelines
add archived col to leaflets in publicaitons
cozylittle.house
3 months ago
edf04618
4ca94f36
+4
2 changed files
expand all
collapse all
unified
split
supabase
database.types.ts
migrations
20251120215250_add_archived_col_to_leaflets_in_publications.sql
+3
supabase/database.types.ts
···
580
580
}
581
581
leaflets_in_publications: {
582
582
Row: {
583
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
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
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
1
+
alter table "public"."leaflets_in_publications" add column "archived" boolean;