Changes
This commit is contained in:
@@ -14,6 +14,48 @@ export type Database = {
|
||||
}
|
||||
public: {
|
||||
Tables: {
|
||||
orders: {
|
||||
Row: {
|
||||
created_at: string
|
||||
currency: string
|
||||
customer_email: string
|
||||
customer_name: string | null
|
||||
id: string
|
||||
items: Json
|
||||
order_number: string
|
||||
shopify_checkout_id: string | null
|
||||
status: string
|
||||
total_amount: number
|
||||
updated_at: string
|
||||
}
|
||||
Insert: {
|
||||
created_at?: string
|
||||
currency?: string
|
||||
customer_email: string
|
||||
customer_name?: string | null
|
||||
id?: string
|
||||
items?: Json
|
||||
order_number: string
|
||||
shopify_checkout_id?: string | null
|
||||
status?: string
|
||||
total_amount: number
|
||||
updated_at?: string
|
||||
}
|
||||
Update: {
|
||||
created_at?: string
|
||||
currency?: string
|
||||
customer_email?: string
|
||||
customer_name?: string | null
|
||||
id?: string
|
||||
items?: Json
|
||||
order_number?: string
|
||||
shopify_checkout_id?: string | null
|
||||
status?: string
|
||||
total_amount?: number
|
||||
updated_at?: string
|
||||
}
|
||||
Relationships: []
|
||||
}
|
||||
profiles: {
|
||||
Row: {
|
||||
address: string | null
|
||||
|
||||
Reference in New Issue
Block a user