diff --git a/src/modules/payments/entities/payment.entity.ts b/src/modules/payments/entities/payment.entity.ts index 9c4960a..54a3068 100644 --- a/src/modules/payments/entities/payment.entity.ts +++ b/src/modules/payments/entities/payment.entity.ts @@ -30,6 +30,9 @@ export class Payment { @Column({ type: 'text', nullable: true }) errorMessage: string; + @Column({ nullable: true }) + attempts: number; + @CreateDateColumn({ type: 'timestamp', name: 'created_at' }) createdAt: Date; }