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
### Added
- Added support for bonds
### Changed
- Restructured the portfolio summary tab on the home page
- 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
### 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
COMMODITY
EQUITY
FIXED_INCOME
}
enum AssetSubClass {
BOND
CRYPTOCURRENCY
ETF
MUTUALFUND

Loading…
Cancel
Save