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 52df0c62ab
commit 669f1fb60c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

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