feat(MED-100): db types
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user