feat(MED-100): db types

This commit is contained in:
2025-07-17 12:55:59 +03:00
parent 7ccc45ce77
commit 5487242bbe
2 changed files with 41 additions and 154 deletions

View File

@@ -116,7 +116,29 @@ export type Database = {
status?: string
}
Relationships: []
}
},
cart_entries: {
Row: {
id: number
account_id: string
cart_id: string
operation: string
variant_id: string
comment: string | null
created_at: string
changed_by: string | null
}
Insert: {
id: number
account_id: string
cart_id: string
operation: string
variant_id: string
comment: string | null
created_at: string
changed_by: string | null
}
},
}
Views: {
[_ in never]: never