From 5a44627d258a89ff40ca8342689dd21395fd0fe1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 10 Jun 2025 22:08:59 +0200 Subject: [PATCH] Rename ApiKey to apiKeys in User database schema --- prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index ede19470d..c95debe36 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -247,6 +247,7 @@ model User { accessToken String? accounts Account[] activities Order[] + apiKeys ApiKey[] authChallenge String? createdAt DateTime @default(now()) id String @id @default(uuid()) @@ -260,7 +261,6 @@ model User { Access Access[] @relation("accessGet") AccessGive Access[] @relation("accessGive") Analytics Analytics? - ApiKey ApiKey[] AuthDevice AuthDevice[] Settings Settings? SymbolProfile SymbolProfile[]