Changes
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user