feat: add flyer_downloads table type to Supabase schema
This commit is contained in:
parent
1cf3004552
commit
331e89f73d
|
|
@ -431,6 +431,28 @@ export interface Database {
|
||||||
};
|
};
|
||||||
Relationships: [];
|
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>;
|
Views: Record<string, never>;
|
||||||
Functions: Record<string, never>;
|
Functions: Record<string, never>;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue