This commit is contained in:
Tria
2026-06-05 15:56:29 +03:00
parent 02018c339d
commit 21bc6948e8
8 changed files with 322 additions and 28 deletions

View File

@@ -26,6 +26,9 @@ export class PaymentEntity extends BaseEntity {
@Column({ type: "numeric" })
amount!: number
@Column({ type: "varchar", length: 255, unique: true, name: "reason", })
reason?: string;
@Column({ type: "jsonb", default: {}, name: "raw_initiation" })
rawInitiation?: Record<string, unknown>