diff --git a/sdk/ts/orm/prisma.mdx b/sdk/ts/orm/prisma.mdx index 86a9757..fa82ffb 100644 --- a/sdk/ts/orm/prisma.mdx +++ b/sdk/ts/orm/prisma.mdx @@ -42,12 +42,11 @@ yarn add @libsql/client @prisma/adapter-libsql - + ```js prisma/schema.prisma generator client { - provider = "prisma-client-js" - previewFeatures = ["driverAdapters"] + provider = "prisma-client-js" } datasource db { @@ -56,6 +55,10 @@ datasource db { } ``` + +For Prisma versions before 6.16.0, you need to add `previewFeatures = ["driverAdapters"]` to the generator block. This preview feature was promoted to General Availability in Prisma 6.16.0 and is no longer required. + +