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
When defining Indexes in Prisma those aren't reflected in the resulting drizzle schema.
Example:
model User {
id String @id
email String?
emailVerified Boolean @default(false)
createdAt Int @default(dbgenerated("(unixepoch('subsecond') * 1000)"))
@@index([email])
}
When defining Indexes in Prisma those aren't reflected in the resulting drizzle schema.
Example:
Actual
Expected
The text was updated successfully, but these errors were encountered: