hestia/prisma/schema.prisma
2025-01-04 22:12:27 -05:00

26 lines
490 B
Text

// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
generator pothos {
provider = "prisma-pothos-types"
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {
id String @id @default(uuid())
clerkId String @unique
email String?
name String
createdAt DateTime @default(now())
updatedAt DateTime @default(now()) @updatedAt
}