This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 23:19:36 +00:00
parent 9f573cd525
commit 53fda6cd7e
3 changed files with 71 additions and 19 deletions
+9
View File
@@ -17,31 +17,40 @@ export type Database = {
profiles: {
Row: {
address: string | null
city: string | null
company_name: string | null
created_at: string
display_name: string | null
id: string
phone: string | null
postal_code: string | null
street_address: string | null
updated_at: string
user_id: string
}
Insert: {
address?: string | null
city?: string | null
company_name?: string | null
created_at?: string
display_name?: string | null
id?: string
phone?: string | null
postal_code?: string | null
street_address?: string | null
updated_at?: string
user_id: string
}
Update: {
address?: string | null
city?: string | null
company_name?: string | null
created_at?: string
display_name?: string | null
id?: string
phone?: string | null
postal_code?: string | null
street_address?: string | null
updated_at?: string
user_id?: string
}