Any clue?
# orm-help
j
Any clue?
1
a
Hey Junyu 👋🏾 What version of Prisma are you running in your application? The error message suggests enabling the
extendedIndexes
Preview feature in your Prisma schema. You can do so by adding it to the
generator
block in your schema
Copy code
generator client {
   provider        = "prisma-client-js"
   previewFeatures = ["extendedIndexes"]
 }
Note:
extendedIndexes
is now Generally Available if you’re using Prisma version ~4.x.x.