Add attempts column to payment entity for tracking payment attempts

This commit is contained in:
Jose Eduardo 2025-08-10 21:03:14 -04:00
parent 012563f252
commit 4d061dab3e

View File

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