From 7284ebcc2a3896d731ff6c7ecbe0c71082775db4 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 7 Jun 2025 10:22:19 +0200 Subject: [PATCH] Rename Tag to tags --- prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index dd3be8cef..b063b1d89 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -252,6 +252,7 @@ model User { provider Provider @default(ANONYMOUS) role Role @default(USER) subscriptions Subscription[] + tags Tag[] thirdPartyId String? updatedAt DateTime @updatedAt watchlist SymbolProfile[] @relation("UserWatchlist") @@ -263,7 +264,6 @@ model User { AuthDevice AuthDevice[] Settings Settings? SymbolProfile SymbolProfile[] - Tag Tag[] @@index([accessToken]) @@index([createdAt])