therapist/prisma/schema.prisma
2023-03-04 17:22:48 -05:00

22 lines
422 B
Plaintext

// 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
}