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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
prisma/schema.prisma
|
@ -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 |
|
|
- 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 |
|
|
- 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 Catalan (`ca`) |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for Spanish (`es`) |
|
|
- Improved the language localization for Spanish (`es`) |
|
|
|
@ -245,6 +245,7 @@ model Tag { |
|
|
|
|
|
|
|
|
model User { |
|
|
model User { |
|
|
accessesGet Access[] @relation("accessGet") |
|
|
accessesGet Access[] @relation("accessGet") |
|
|
|
|
|
accessesGive Access[] @relation("accessGive") |
|
|
accessToken String? |
|
|
accessToken String? |
|
|
accounts Account[] |
|
|
accounts Account[] |
|
|
activities Order[] |
|
|
activities Order[] |
|
@ -262,7 +263,6 @@ model User { |
|
|
thirdPartyId String? |
|
|
thirdPartyId String? |
|
|
updatedAt DateTime @updatedAt |
|
|
updatedAt DateTime @updatedAt |
|
|
watchlist SymbolProfile[] @relation("UserWatchlist") |
|
|
watchlist SymbolProfile[] @relation("UserWatchlist") |
|
|
AccessGive Access[] @relation("accessGive") |
|
|
|
|
|
SymbolProfile SymbolProfile[] |
|
|
SymbolProfile SymbolProfile[] |
|
|
|
|
|
|
|
|
@@index([accessToken]) |
|
|
@@index([accessToken]) |
|
|