remove showEmail from transaction link model, alter database version

This commit is contained in:
Moriz Wahl 2022-03-10 17:35:15 +01:00
parent 95c786f484
commit 91ffc16ed0
2 changed files with 1 additions and 4 deletions

View File

@ -10,7 +10,7 @@ Decimal.set({
})
const constants = {
DB_VERSION: '0030-transaction_link',
DB_VERSION: '0031-remove_sendEmail_from_transaction_link',
DECAY_START_TIME: new Date('2021-05-13 17:46:31'), // GMT+0
}

View File

@ -31,9 +31,6 @@ export class TransactionLink {
@Field(() => Date)
validUntil: Date
@Field(() => Boolean)
showEmail: boolean
@Field(() => Date, { nullable: true })
redeemedAt: Date | null