Feature/add cusip to asset profile model (#4347)

* Add CUSIP

* Update changelog
This commit is contained in:
Thomas Kaul 2025-02-25 19:48:22 +01:00 committed by GitHub
parent 634bdf16d6
commit 8f165d46e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 11 additions and 1 deletions

View File

@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Extended the export functionality by the tags
- Extended the portfolio snapshot in the portfolio calculator by the activities count
- Extended the user endpoint `GET api/v1/user` by the activities count
- Added `cusip` to the asset profile model
### Changed

View File

@ -293,6 +293,7 @@ export class ImportService {
assetSubClass,
countries,
createdAt,
cusip,
dataSource,
figi,
figiComposite,
@ -367,6 +368,7 @@ export class ImportService {
assetSubClass,
countries,
createdAt,
cusip,
dataSource,
figi,
figiComposite,

View File

@ -0,0 +1,5 @@
-- AlterTable
ALTER TABLE "SymbolProfile" ADD COLUMN "cusip" TEXT;
-- CreateIndex
CREATE INDEX "SymbolProfile_cusip_idx" ON "SymbolProfile"("cusip");

View File

@ -1,3 +1,3 @@
# Please do not edit this file manually
# It should be added in your version-control system (i.e. Git)
# It should be added in your version-control system (e.g., Git)
provider = "postgresql"

View File

@ -174,6 +174,7 @@ model SymbolProfile {
countries Json?
createdAt DateTime @default(now())
currency String
cusip String?
dataSource DataSource
figi String?
figiComposite String?
@ -196,6 +197,7 @@ model SymbolProfile {
@@unique([dataSource, symbol])
@@index([assetClass])
@@index([currency])
@@index([cusip])
@@index([dataSource])
@@index([isin])
@@index([name])