feat(plan5): types création + modèle Prisma ProductCreation
This commit is contained in:
+22
-7
@@ -7,13 +7,14 @@ datasource db {
|
||||
}
|
||||
|
||||
model User {
|
||||
id String @id @default(cuid())
|
||||
email String @unique
|
||||
name String
|
||||
password String
|
||||
role String @default("gestionnaire")
|
||||
createdAt DateTime @default(now())
|
||||
syncRuns SyncRun[]
|
||||
id String @id @default(cuid())
|
||||
email String @unique
|
||||
name String
|
||||
password String
|
||||
role String @default("gestionnaire")
|
||||
createdAt DateTime @default(now())
|
||||
syncRuns SyncRun[]
|
||||
productCreations ProductCreation[]
|
||||
}
|
||||
|
||||
model SyncRun {
|
||||
@@ -28,3 +29,17 @@ model SyncRun {
|
||||
errors Int @default(0)
|
||||
log String @default("[]")
|
||||
}
|
||||
|
||||
model ProductCreation {
|
||||
id String @id @default(cuid())
|
||||
createdAt DateTime @default(now())
|
||||
userId String
|
||||
user User @relation(fields: [userId], references: [id])
|
||||
sheetTab String
|
||||
sheetRow Int
|
||||
shopifyId String
|
||||
sku String
|
||||
title String
|
||||
status String @default("success")
|
||||
errorMessage String @default("")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user