Feature/add support for private equity (#881)

* Add support for private equity

* Update changelog
This commit is contained in:
Thomas Kaul
2022-04-30 22:16:13 +02:00
committed by GitHub
parent 01103f3db4
commit f6f62db830
3 changed files with 8 additions and 0 deletions

View File

@@ -9,8 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added support for private equity
- Extended the form to set the asset and asset sub class for (wealth) items
### Todo
- Apply data migration (`yarn database:migrate`)
## 1.144.0 - 30.04.2022
### Added

View File

@@ -0,0 +1,2 @@
-- AlterEnum
ALTER TYPE "AssetSubClass" ADD VALUE 'PRIVATE_EQUITY';

View File

@@ -195,6 +195,7 @@ enum AssetSubClass {
ETF
MUTUALFUND
PRECIOUS_METAL
PRIVATE_EQUITY
STOCK
}