Browse Source

Feature/add database migration to reset account type in account table (#2602)

* Set accountType to NULL

* Update changelog
pull/2611/head
Thomas Kaul 1 year ago
committed by GitHub
parent
commit
669f1fb60c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 2
      prisma/migrations/20231105135400_set_value_of_account_type_to_null_in_account/migration.sql

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Added
- Added a data migration to set `accountType` to `NULL` in the account database table
## 2.18.0 - 2023-11-05
### Added

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