This commit is contained in:
gpt-engineer-app[bot]
2026-01-28 00:22:52 +00:00
parent a32e44a789
commit 793d0e9a01
2 changed files with 78 additions and 0 deletions
+42
View File
@@ -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