From dd8ddbad42d8a75640c952228717fe299ee5d7e0 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 26 Feb 2022 17:15:15 +0100 Subject: [PATCH] missing null on field creationDate --- database/entity/0028-clean_transaction_table/Transaction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/entity/0028-clean_transaction_table/Transaction.ts b/database/entity/0028-clean_transaction_table/Transaction.ts index 252adb2a4..7989e918a 100644 --- a/database/entity/0028-clean_transaction_table/Transaction.ts +++ b/database/entity/0028-clean_transaction_table/Transaction.ts @@ -63,7 +63,7 @@ export class Transaction extends BaseEntity { memo: string @Column({ name: 'creation_date', type: 'datetime', nullable: true, default: null }) - creationDate: Date + creationDate: Date | null @Column({ name: 'linked_user_id',