Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-17 02:58:00 +00:00
co-authored by renee-png
parent ee8e57695e
commit 301dcdfe2a
2 changed files with 67 additions and 0 deletions
+15
View File
@@ -1746,27 +1746,42 @@ export type Database = {
}
profiles: {
Row: {
avatar_url: string | null
bio: string | null
created_at: string
email: string
full_name: string
hourly_rate: number | null
id: string
phone: string | null
timezone: string | null
title: string | null
updated_at: string
}
Insert: {
avatar_url?: string | null
bio?: string | null
created_at?: string
email?: string
full_name?: string
hourly_rate?: number | null
id: string
phone?: string | null
timezone?: string | null
title?: string | null
updated_at?: string
}
Update: {
avatar_url?: string | null
bio?: string | null
created_at?: string
email?: string
full_name?: string
hourly_rate?: number | null
id?: string
phone?: string | null
timezone?: string | null
title?: string | null
updated_at?: string
}
Relationships: []