You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I have a prisma model where a size of VarChar fields is limited to a certain number of chars. The limit is not reflected in the generated zod schema
Scheme
generator client {
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x", "debian-openssl-3.0.x"]
}
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
generator zod {
provider = "zod-prisma-types"
}
model contacts {
id Int @id @default(autoincrement())
name String @db.VarChar(50)
surname String @db.VarChar(50)
supplier String @db.VarChar(50)
email String? @db.VarChar(50)
phone String? @db.VarChar(30)
country String @db.VarChar(50)
note String?
}
Describe the bug
I have a prisma model where a size of VarChar fields is limited to a certain number of chars. The limit is not reflected in the generated zod schema
Scheme
Output
Package versions (please complete the following information):
The text was updated successfully, but these errors were encountered: