```Running generate... (Use --skip-generate to ski...
# orm-help
s
Copy code
Running generate... (Use --skip-generate to skip the generators)
Error: Schema parsing
error: Found argument '--enable-experimental' which wasn't expected, or isn't valid in this context
        Did you mean --enable-playground?

USAGE:
    query-engine-debian-openssl-1.1.x --enable-playground
r
@Sasi 👋 Could you share what version of Prisma are you on and what your schema looks like? I haven’t seen this error before but maybe @janpio has.
s
2.25.0
Copy code
generator client {
  provider        = "prisma-client-js"
  previewFeatures = ["selectRelationCount"]
}

datasource db {
  provider = "postgresql"
  url      = env("DATABASE_URL")
}

model User {
  id            String    @id @default(uuid())
  name          String?
  email         String?   @unique
  emailVerified DateTime? @map(name: "email_verified")
  image         String?
  createdAt     DateTime  @default(now()) @map(name: "created_at")
  updatedAt     DateTime  @default(now()) @map(name: "updated_at")

  @@map(name: "users")
}
j
That looks like a really old version of something.
Where do you get this error? What command are you running?
s
prisma migrate dev
j
I think if you delete your
node_modules
and then run
npm install
again, this should solve itself probably.
Make sure your CLI and Client are on the same version though.
What does
npx prisma -v
output?
s
j
Super weird, the versions look just fine here.
s
yes, but the same