Browse Source

Feature/rename AccessGive to accessesGive in User database schema (#5132)

* Rename AccessGive to accessesGive in User database schema

* Update changelog
pull/5133/head
Thomas Kaul 2 weeks ago
committed by GitHub
parent
commit
a0b00ff26c
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

@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Respected the filter by account for accounts when exporting activities on the portfolio activities page
- Improved the label for asset profiles with `MANUAL` data source in the chart of the holdings tab on the home page
- Renamed `AccessGive` to `accessesGive` in the `User` database schema
- Improved the language localization for Catalan (`ca`)
- Improved the language localization for German (`de`)
- Improved the language localization for Spanish (`es`)

2
prisma/schema.prisma

@ -245,6 +245,7 @@ model Tag {
model User {
accessesGet Access[] @relation("accessGet")
accessesGive Access[] @relation("accessGive")
accessToken String?
accounts Account[]
activities Order[]
@ -262,7 +263,6 @@ model User {
thirdPartyId String?
updatedAt DateTime @updatedAt
watchlist SymbolProfile[] @relation("UserWatchlist")
AccessGive Access[] @relation("accessGive")
SymbolProfile SymbolProfile[]
@@index([accessToken])

Loading…
Cancel
Save