Browse Source

Feature/rename Tag to tags in User database schema (#4846)

* Rename Tag to tags

* Update changelog
pull/4847/head
Thomas Kaul 3 weeks ago
committed by GitHub
parent
commit
e38ce2852c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      prisma/schema.prisma

1
CHANGELOG.md

@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Extended the symbol search component by default options
- Renamed `Tag` to `tags` in the `User` database schema
- Improved the language localization for Spanish (`es`)
- Improved the language localization for Turkish (`tr`)
- Upgraded `ng-extract-i18n-merge` from version `2.15.0` to `2.15.1`

2
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])

Loading…
Cancel
Save