Open LB22 opened 2 years ago
This is still an issue and also breaks the cloud prisma studio
npx prisma --version prisma : 4.3.1 @prisma/client : 4.3.1 Current platform : darwin Query Engine (Node-API) : libquery-engine c875e43600dfe042452e0b868f7a48b817b9640b (at node_modules/@prisma/engines/libquery_engine-darwin.dylib.node) Migration Engine : migration-engine-cli c875e43600dfe042452e0b868f7a48b817b9640b (at node_modules/@prisma/engines/migration-engine-darwin) Introspection Engine : introspection-core c875e43600dfe042452e0b868f7a48b817b9640b (at node_modules/@prisma/engines/introspection-engine-darwin) Format Binary : prisma-fmt c875e43600dfe042452e0b868f7a48b817b9640b (at node_modules/@prisma/engines/prisma-fmt-darwin) Format Wasm : @prisma/prisma-fmt-wasm 4.3.0-32.c875e43600dfe042452e0b868f7a48b817b9640b Default Engines Hash : c875e43600dfe042452e0b868f7a48b817b9640b Studio : 0.473.0
Hi @Arrowana - we have been unable to reproduce this issue. If you can consistently reproduce it, would you be able to record a Replay.io session for us to get more info on this issue? We'd really appreciate the help. Here's how you can do that: https://docs.replay.io/docs/recording-bug-reports-80c37d7d6753485f81497570625d06f0
Prisma version (
prisma -v
ornpx prisma -v
):Logs from Developer Tools Console or Command line, if any:
Does the issue persist even after updating to the latest
prisma
CLI dev version? (npm i -D prisma@dev
) Got this warning:Versions of prisma@3.11.0-dev.61 and @prisma/client@3.10.0 don't match.
Tried to run prisma studio anyways, the issue persisted.Prisma schema (if relevant):
datasource db { provider = "postgresql" url = env("DATABASE_URL") }
model customer { id BigInt @id @unique @default(autoincrement()) created_at DateTime? @default(now()) @db.Timestamptz(6) first_name String? @db.VarChar last_name String? @db.VarChar email_address String? @db.VarChar mobile_phone_number String? @db.VarChar orders order[] }
model order { id BigInt @id @unique @default(autoincrement()) created_at DateTime? @default(now()) @db.Timestamptz(6) stripe_payment_intent_id String? @unique @db.VarChar products Json[] @db.Json customer customer? @relation(fields: [customerId], references: [id]) customerId BigInt }