feat: add flyer_downloads table type to Supabase schema

This commit is contained in:
MBO-Tech-IT 2026-07-21 11:24:05 +02:00
parent 1cf3004552
commit 331e89f73d
1 changed files with 22 additions and 0 deletions

View File

@ -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<string, never>;
Functions: Record<string, never>;