done changing

This commit is contained in:
Kfir Dayan 2023-06-08 19:03:50 +03:00
parent 37b0c1c9e1
commit e617907055

View file

@ -1,37 +0,0 @@
// datasource db {
// provider = "mongodb"
// url = env("DATABASE_URL")
// }
// generator client {
// provider = "prisma-client-js"
// }
// model User {
// id String @id @default(cuid()) @map("_id")
// firstName String
// lastName String
// email String @unique
// password String
// address String
// createdAt DateTime @default(now())
// updatedAt DateTime @updatedAt
// }
// model Item {
// id String @id @default(cuid()) @map("_id")
// name String
// price Float
// quantity Int @default(0)
// createdAt DateTime @default(now())
// updatedAt DateTime @updatedAt
// }
// model Cart {
// id String @id @default(cuid()) @map("_id")
// userId String
// itemId String
// createdAt DateTime @default(now())
// updatedAt DateTime @updatedAt
// @@unique([userId, itemId])
// }