Browse Source

Merge branch 'main' into bugfix/improve-handling-of-derived-currencies

pull/2604/head
Thomas Kaul 2 years ago
committed by GitHub
parent
commit
05de53dbfa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      CHANGELOG.md
  2. 2
      prisma/migrations/20231105135400_set_value_of_account_type_to_null_in_account/migration.sql

4
CHANGELOG.md

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added a data migration to set `accountType` to `NULL` in the account database table
### Fixed
- Improved the handling of derived currencies (`GBp`, `ILA`, `ZAc`)

2
prisma/migrations/20231105135400_set_value_of_account_type_to_null_in_account/migration.sql

@ -0,0 +1,2 @@
-- AlterTable
UPDATE "Account" SET "accountType" = NULL;
Loading…
Cancel
Save