From 331e89f73d0e0aa3a0af7cf821c2388a00b4a52d Mon Sep 17 00:00:00 2001 From: MBO-Tech-IT Date: Tue, 21 Jul 2026 11:24:05 +0200 Subject: [PATCH] feat: add flyer_downloads table type to Supabase schema --- lib/supabase.ts | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) 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;