diff --git a/lib/supabase.ts b/lib/supabase.ts index b0eb61d..25c7670 100644 --- a/lib/supabase.ts +++ b/lib/supabase.ts @@ -431,6 +431,28 @@ export interface Database { }; Relationships: []; }; + flyer_downloads: { + Row: { + id: number; + email: string; + flyer: string; + dsgvo_einwilligung: boolean; + created_at: string; + }; + Insert: { + id?: number; + email: string; + flyer?: string; + dsgvo_einwilligung: boolean; + created_at?: string; + }; + Update: { + email?: string; + flyer?: string; + dsgvo_einwilligung?: boolean; + }; + Relationships: []; + }; }; Views: Record; Functions: Record;