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
}
581
leaflets_in_publications: {
582
Row: {
0
583
description: string
584
doc: string | null
585
leaflet: string
···
587
title: string
588
}
589
Insert: {
0
590
description?: string
591
doc?: string | null
592
leaflet: string
···
594
title?: string
595
}
596
Update: {
0
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
···
0
···
1
+
alter table "public"."leaflets_in_publications" add column "archived" boolean;