// This is your Prisma schema file, // learn more about it in the docs: https://pris.ly/d/prisma-schema datasource db { provider = "mongodb" url = env("DATABASE_URL") } generator client { provider = "prisma-client-js" } model Session { id String @id @default(auto()) @map("_id") @db.ObjectId startedAt DateTime @default(now()) endedAt DateTime? callId String @unique phoneNumber String @unique }