From ad3ddf3218e609f0a82be887dc65491bf116815c Mon Sep 17 00:00:00 2001 From: leonnicolas Date: Fri, 4 Dec 2020 09:34:18 +0100 Subject: [PATCH] src/dataSource/db/lendingStation.ts: add generalRemark --- src/model/LendingStation.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/model/LendingStation.ts b/src/model/LendingStation.ts index 9c266de..9df1441 100644 --- a/src/model/LendingStation.ts +++ b/src/model/LendingStation.ts @@ -34,6 +34,12 @@ export class LoanPeriod { }) from: Date; + @Column({ + nullable: true, + type: 'text' + }) + generalRemark: string; + /** * validity for loanPeriods */