first commit
This commit is contained in:
@ -418,6 +418,23 @@ model PartsSearchHistory {
|
||||
@@map("parts_search_history")
|
||||
}
|
||||
|
||||
// История запросов ZZAP со скриншотами
|
||||
model ZzapRequest {
|
||||
id String @id @default(cuid())
|
||||
provider String @default("zzap")
|
||||
article String
|
||||
statsUrl String?
|
||||
imageUrl String?
|
||||
ok Boolean @default(false)
|
||||
selector String?
|
||||
logs Json?
|
||||
requestedBy String?
|
||||
createdAt DateTime @default(now())
|
||||
|
||||
@@index([article])
|
||||
@@map("zzap_requests")
|
||||
}
|
||||
|
||||
model ClientDeliveryAddress {
|
||||
id String @id @default(cuid())
|
||||
clientId String
|
||||
|
Reference in New Issue
Block a user