Feature/add support for bonds (#755)

* Add support for bonds

* Update changelog
pull/756/head
Thomas Kaul 3 years ago committed by GitHub
parent e769fabbae
commit d8da574ae4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save