Browse Source
Feature/add support for bonds (#755)
* Add support for bonds
* Update changelog
pull/756/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
0 deletions
-
CHANGELOG.md
-
prisma/migrations/20220313200604_added_fixed_income_to_asset_class/migration.sql
-
prisma/migrations/20220313200721_added_bond_to_asset_sub_class/migration.sql
-
prisma/schema.prisma
|
@ -7,11 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
## Unreleased |
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
|
|
- Added support for bonds |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
- Restructured the portfolio summary tab on the home page |
|
|
- Restructured the portfolio summary tab on the home page |
|
|
- Improved the tooltips in the portfolio proportion chart component by introducing multilines |
|
|
- Improved the tooltips in the portfolio proportion chart component by introducing multilines |
|
|
|
|
|
|
|
|
|
|
|
### Todo |
|
|
|
|
|
|
|
|
|
|
|
- Apply data migration (`yarn database:migrate`) |
|
|
|
|
|
|
|
|
## 1.125.0 - 12.03.2022 |
|
|
## 1.125.0 - 12.03.2022 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
@ -0,0 +1,2 @@ |
|
|
|
|
|
-- AlterEnum |
|
|
|
|
|
ALTER TYPE "AssetClass" ADD VALUE 'FIXED_INCOME'; |
|
@ -0,0 +1,2 @@ |
|
|
|
|
|
-- AlterEnum |
|
|
|
|
|
ALTER TYPE "AssetSubClass" ADD VALUE 'BOND'; |
|
@ -171,9 +171,11 @@ enum AssetClass { |
|
|
CASH |
|
|
CASH |
|
|
COMMODITY |
|
|
COMMODITY |
|
|
EQUITY |
|
|
EQUITY |
|
|
|
|
|
FIXED_INCOME |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
enum AssetSubClass { |
|
|
enum AssetSubClass { |
|
|
|
|
|
BOND |
|
|
CRYPTOCURRENCY |
|
|
CRYPTOCURRENCY |
|
|
ETF |
|
|
ETF |
|
|
MUTUALFUND |
|
|
MUTUALFUND |
|
|