Browse Source
Merge branch 'main' into bugfix/improve-handling-of-derived-currencies
pull/2604/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
0 deletions
-
CHANGELOG.md
-
prisma/migrations/20231105135400_set_value_of_account_type_to_null_in_account/migration.sql
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
## Unreleased |
|
|
## Unreleased |
|
|
|
|
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
|
|
|
|
- Added a data migration to set `accountType` to `NULL` in the account database table |
|
|
|
|
|
|
|
|
### Fixed |
|
|
### Fixed |
|
|
|
|
|
|
|
|
- Improved the handling of derived currencies (`GBp`, `ILA`, `ZAc`) |
|
|
- Improved the handling of derived currencies (`GBp`, `ILA`, `ZAc`) |
|
|
|
@ -0,0 +1,2 @@ |
|
|
|
|
|
-- AlterTable |
|
|
|
|
|
UPDATE "Account" SET "accountType" = NULL; |