From f6f62db830ec13b8fb74fe77e4d1b7c35d343ee3 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 30 Apr 2022 22:16:13 +0200 Subject: [PATCH] Feature/add support for private equity (#881) * Add support for private equity * Update changelog --- CHANGELOG.md | 5 +++++ .../migration.sql | 2 ++ prisma/schema.prisma | 1 + 3 files changed, 8 insertions(+) create mode 100644 prisma/migrations/20220430193522_added_private_equity_to_asset_sub_class/migration.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index 3906b0f31..a09b7cad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/prisma/migrations/20220430193522_added_private_equity_to_asset_sub_class/migration.sql b/prisma/migrations/20220430193522_added_private_equity_to_asset_sub_class/migration.sql new file mode 100644 index 000000000..6578247d8 --- /dev/null +++ b/prisma/migrations/20220430193522_added_private_equity_to_asset_sub_class/migration.sql @@ -0,0 +1,2 @@ +-- AlterEnum +ALTER TYPE "AssetSubClass" ADD VALUE 'PRIVATE_EQUITY'; diff --git a/prisma/schema.prisma b/prisma/schema.prisma index a267ab811..c5a03dc93 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -195,6 +195,7 @@ enum AssetSubClass { ETF MUTUALFUND PRECIOUS_METAL + PRIVATE_EQUITY STOCK }