fix: rename apiKey to apiKeys in moder User relation in schema.prisma

pull/2374/head
Agusti Fernandez Pardo 2022-03-25 22:35:39 +01:00
parent 9a5eb0e43d
commit a3471abcf9
1 changed files with 1 additions and 1 deletions

View File

@ -149,8 +149,8 @@ model User {
away Boolean @default(false)
metadata Json?
verified Boolean? @default(false)
apiKeys ApiKey[]
ApiKey ApiKey[]
@@map(name: "users")
}