79518500

Date: 2025-03-18 19:37:19
Score: 1
Natty:
Report link
model Products {
  id    String @id @default(auto()) @map("_id") @db.ObjectId
  csso  Json
}

const addProd = await prisma.products.create({
    data: {
        csso: {
                image: req.file.filename,
                name: req.body.name,
                desc: req.body.desc
            }
    }
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gcarts