Browse Source

Rename Tag to tags

pull/4846/head
Thomas Kaul 3 months ago
parent
commit
7284ebcc2a
  1. 2
      prisma/schema.prisma

2
prisma/schema.prisma

@ -252,6 +252,7 @@ model User {
provider Provider @default(ANONYMOUS) provider Provider @default(ANONYMOUS)
role Role @default(USER) role Role @default(USER)
subscriptions Subscription[] subscriptions Subscription[]
tags Tag[]
thirdPartyId String? thirdPartyId String?
updatedAt DateTime @updatedAt updatedAt DateTime @updatedAt
watchlist SymbolProfile[] @relation("UserWatchlist") watchlist SymbolProfile[] @relation("UserWatchlist")
@ -263,7 +264,6 @@ model User {
AuthDevice AuthDevice[] AuthDevice AuthDevice[]
Settings Settings? Settings Settings?
SymbolProfile SymbolProfile[] SymbolProfile SymbolProfile[]
Tag Tag[]
@@index([accessToken]) @@index([accessToken])
@@index([createdAt]) @@index([createdAt])

Loading…
Cancel
Save