driver adapters

This commit is contained in:
Benjamin Palko 2025-01-25 11:50:26 -05:00
parent 3a985ef484
commit 961a09c27c
4 changed files with 65 additions and 3 deletions

View file

@ -2,7 +2,8 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
previewFeatures = ["driverAdapters"]
}
generator pothos {
@ -38,4 +39,4 @@ model Tenant {
updatedAt DateTime @updatedAt
clerkOrganizationId String @unique
users User[]
}
}