Luca Steeb

Results 164 issues of Luca Steeb

**Problem** ```prisma model Post { id String @id user String User User @relation(fields: [author], references: [id]) } model User { id String @id name String } ``` The `author` and...

bug/2-confirmed
kind/bug

a user reported: ```prisma model AccountEntity { id Int @id @default(autoincrement()) ... orgId Int entityId String ... users UserEntity[] @@unique([orgId, entityId]) } model UserEntity { id Int @id @default(autoincrement()) ......

bug/2-confirmed
kind/bug

like `.CursorOptional()`

One of Go's main philosophies is default values instead of using nulls. While this may not always work with SQL databases, there might be cases where you want to set...