MarcoFoof

Results 1 comments of MarcoFoof

An idea to solve this problem: prisma.schema ``` model Account { id String @id @default(uuid()) name String @unique email String @unique password String tenantId String @unique createdAt DateTime @default(now()) updatedAt...