Add applications table definitions to Supabase types

cgen-78e5e8d7fc2f4c458bca9e643034c697
This commit is contained in:
Builder.io 2025-10-14 04:40:51 +00:00
parent bf4234348c
commit 288e691605

View file

@ -39,6 +39,60 @@ export type Database = {
};
Relationships: [];
};
applications: {
Row: {
id: string;
type: "contributor" | "career";
full_name: string;
email: string;
location: string | null;
role_interest: string | null;
primary_skill: string | null;
experience_level: string | null;
availability: string | null;
portfolio_url: string | null;
resume_url: string | null;
interests: string[] | null;
message: string | null;
status: string;
submitted_at: string;
};
Insert: {
id?: string;
type: "contributor" | "career";
full_name: string;
email: string;
location?: string | null;
role_interest?: string | null;
primary_skill?: string | null;
experience_level?: string | null;
availability?: string | null;
portfolio_url?: string | null;
resume_url?: string | null;
interests?: string[] | null;
message?: string | null;
status?: string;
submitted_at?: string;
};
Update: {
id?: string;
type?: "contributor" | "career";
full_name?: string;
email?: string;
location?: string | null;
role_interest?: string | null;
primary_skill?: string | null;
experience_level?: string | null;
availability?: string | null;
portfolio_url?: string | null;
resume_url?: string | null;
interests?: string[] | null;
message?: string | null;
status?: string;
submitted_at?: string;
};
Relationships: [];
};
comments: {
Row: {
author_id: string;